pub struct OffsetFetchResponse {
pub throttle_time_ms: i32,
pub topics: Vec<OffsetFetchResponseTopic>,
pub error_code: i16,
pub groups: Vec<OffsetFetchResponseGroup>,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
Fields§
§throttle_time_ms: i32
The duration in milliseconds for which the request was throttled due to a quota violation, or zero if the request did not violate any quota.
topics: Vec<OffsetFetchResponseTopic>
The responses per topic.
error_code: i16
The top-level error code, or 0 if there was no error.
groups: Vec<OffsetFetchResponseGroup>
The responses per group id.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
source§impl Clone for OffsetFetchResponse
impl Clone for OffsetFetchResponse
source§fn clone(&self) -> OffsetFetchResponse
fn clone(&self) -> OffsetFetchResponse
Returns a copy of the value. Read more
1.0.0 · 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 OffsetFetchResponse
impl Debug for OffsetFetchResponse
source§impl Default for OffsetFetchResponse
impl Default for OffsetFetchResponse
source§fn default() -> OffsetFetchResponse
fn default() -> OffsetFetchResponse
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for OffsetFetchResponse
impl Send for OffsetFetchResponse
impl Sync for OffsetFetchResponse
impl Unpin for OffsetFetchResponse
impl UnwindSafe for OffsetFetchResponse
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