pub struct FetchOk {
pub request_id: VarInt,
pub group_order: VarInt,
pub end_of_track: VarInt,
pub end_location: Location,
pub parameters: Vec<KeyValuePair>,
}Expand description
FETCH_OK message (type 0x18).
Fields§
§request_id: VarIntThe request ID this response corresponds to.
group_order: VarIntThe group delivery order chosen by the publisher (VarInt).
end_of_track: VarIntWhether the end of the track has been reached (VarInt).
end_location: LocationThe end location of the fetch response.
parameters: Vec<KeyValuePair>Response parameters (even/odd KVP encoding).
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