pub struct FetchResponseV13 {
pub throttle_time_ms: i32,
pub error_code: i16,
pub session_id: i32,
pub responses: Vec<FetchTopicResponseV13>,
}Expand description
Fetch response version 13 with topic UUIDs (KIP-516).
Fields§
§throttle_time_ms: i32§error_code: i16§session_id: i32§responses: Vec<FetchTopicResponseV13>Implementations§
Source§impl FetchResponseV13
impl FetchResponseV13
pub fn decode_body(decoder: &mut Decoder<'_>) -> Result<Self>
Trait Implementations§
Source§impl Clone for FetchResponseV13
impl Clone for FetchResponseV13
Source§fn clone(&self) -> FetchResponseV13
fn clone(&self) -> FetchResponseV13
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 FetchResponseV13
impl Debug for FetchResponseV13
impl Eq for FetchResponseV13
Source§impl PartialEq for FetchResponseV13
impl PartialEq for FetchResponseV13
impl StructuralPartialEq for FetchResponseV13
Auto Trait Implementations§
impl Freeze for FetchResponseV13
impl RefUnwindSafe for FetchResponseV13
impl Send for FetchResponseV13
impl Sync for FetchResponseV13
impl Unpin for FetchResponseV13
impl UnsafeUnpin for FetchResponseV13
impl UnwindSafe for FetchResponseV13
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