pub struct Fetch {
pub subscribe_id: VarInt,
pub track_namespace: TrackNamespace,
pub track_name: Vec<u8>,
pub subscriber_priority: u8,
pub group_order: GroupOrder,
pub start_group: VarInt,
pub start_object: VarInt,
pub end_group: VarInt,
pub end_object: VarInt,
pub parameters: Vec<KeyValuePair>,
}Expand description
FETCH message (type 0x16).
Fields§
§subscribe_id: VarIntThe subscribe ID for this fetch request.
track_namespace: TrackNamespaceThe track namespace to fetch from.
track_name: Vec<u8>The track name to fetch.
subscriber_priority: u8The priority of this subscriber relative to others.
group_order: GroupOrderThe requested group delivery order.
start_group: VarIntThe start group for the fetch range.
start_object: VarIntThe start object for the fetch range.
end_group: VarIntThe end group for the fetch range.
end_object: VarIntThe end object for the fetch range.
parameters: Vec<KeyValuePair>Fetch parameters.
Trait Implementations§
impl Eq for Fetch
impl StructuralPartialEq for Fetch
Auto Trait Implementations§
impl Freeze for Fetch
impl RefUnwindSafe for Fetch
impl Send for Fetch
impl Sync for Fetch
impl Unpin for Fetch
impl UnsafeUnpin for Fetch
impl UnwindSafe for Fetch
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more