pub struct FetchResponseV11 {
pub throttle_time_ms: i32,
pub error_code: i16,
pub session_id: i32,
pub responses: Vec<FetchTopicResponseV11>,
}Expand description
Fetch response version 11 with broker-selected read replicas.
Fields§
§throttle_time_ms: i32§error_code: i16§session_id: i32§responses: Vec<FetchTopicResponseV11>Implementations§
Source§impl FetchResponseV11
impl FetchResponseV11
pub fn decode_body(decoder: &mut Decoder<'_>) -> Result<Self>
Trait Implementations§
Source§impl Clone for FetchResponseV11
impl Clone for FetchResponseV11
Source§fn clone(&self) -> FetchResponseV11
fn clone(&self) -> FetchResponseV11
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FetchResponseV11
impl Debug for FetchResponseV11
impl Eq for FetchResponseV11
Source§impl PartialEq for FetchResponseV11
impl PartialEq for FetchResponseV11
impl StructuralPartialEq for FetchResponseV11
Auto Trait Implementations§
impl Freeze for FetchResponseV11
impl RefUnwindSafe for FetchResponseV11
impl Send for FetchResponseV11
impl Sync for FetchResponseV11
impl Unpin for FetchResponseV11
impl UnsafeUnpin for FetchResponseV11
impl UnwindSafe for FetchResponseV11
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