pub struct ListOffsetsRequestTopic {
pub name: String_,
pub partitions: Vec<ListOffsetsRequestPartition>,
}Fields§
§name: String_The topic name.
partitions: Vec<ListOffsetsRequestPartition>Each partition in the request.
Note: A partition may only appear once within the request.
Trait Implementations§
Source§impl Debug for ListOffsetsRequestTopic
impl Debug for ListOffsetsRequestTopic
Source§impl<W> WriteVersionedType<W> for ListOffsetsRequestTopicwhere
W: Write,
impl<W> WriteVersionedType<W> for ListOffsetsRequestTopicwhere
W: Write,
fn write_versioned( &self, writer: &mut W, version: ApiVersion, ) -> Result<(), WriteVersionedError>
Auto Trait Implementations§
impl Freeze for ListOffsetsRequestTopic
impl RefUnwindSafe for ListOffsetsRequestTopic
impl Send for ListOffsetsRequestTopic
impl Sync for ListOffsetsRequestTopic
impl Unpin for ListOffsetsRequestTopic
impl UnwindSafe for ListOffsetsRequestTopic
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