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 Freeze for OffsetFetchResponse
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