pub struct FetchOk {
pub subscribe_id: VarInt,
pub group_order: GroupOrder,
pub end_of_track: u8,
pub largest_group_id: VarInt,
pub largest_object_id: VarInt,
pub parameters: Vec<KeyValuePair>,
}Expand description
FETCH_OK message (type 0x18).
Fields§
§subscribe_id: VarIntThe subscribe ID this response corresponds to.
group_order: GroupOrderThe group delivery order chosen by the publisher.
end_of_track: u8Whether this fetch reaches the end of the track (1 = yes).
largest_group_id: VarIntThe largest group ID available.
largest_object_id: VarIntThe largest object ID available.
parameters: Vec<KeyValuePair>Fetch OK parameters.
Trait Implementations§
impl Eq for FetchOk
impl StructuralPartialEq for FetchOk
Auto Trait Implementations§
impl Freeze for FetchOk
impl RefUnwindSafe for FetchOk
impl Send for FetchOk
impl Sync for FetchOk
impl Unpin for FetchOk
impl UnsafeUnpin for FetchOk
impl UnwindSafe for FetchOk
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