pub struct OffsetFetchRequestTopic {
pub name: String,
pub partition_indexes: Vec<i32>,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
Fields§
§name: String
The topic name.
partition_indexes: Vec<i32>
The partition indexes we would like to fetch offsets for.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
Source§impl Clone for OffsetFetchRequestTopic
impl Clone for OffsetFetchRequestTopic
Source§fn clone(&self) -> OffsetFetchRequestTopic
fn clone(&self) -> OffsetFetchRequestTopic
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 OffsetFetchRequestTopic
impl Debug for OffsetFetchRequestTopic
Source§impl Decodable for OffsetFetchRequestTopic
impl Decodable for OffsetFetchRequestTopic
Source§impl Default for OffsetFetchRequestTopic
impl Default for OffsetFetchRequestTopic
Source§fn default() -> OffsetFetchRequestTopic
fn default() -> OffsetFetchRequestTopic
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OffsetFetchRequestTopic
impl RefUnwindSafe for OffsetFetchRequestTopic
impl Send for OffsetFetchRequestTopic
impl Sync for OffsetFetchRequestTopic
impl Unpin for OffsetFetchRequestTopic
impl UnwindSafe for OffsetFetchRequestTopic
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