pub struct FetchResponseTopic {
pub topic: String_,
pub partitions: Vec<FetchResponsePartition>,
}Fields§
§topic: String_The topic name.
partitions: Vec<FetchResponsePartition>The topic partitions.
Trait Implementations§
Source§impl Debug for FetchResponseTopic
impl Debug for FetchResponseTopic
Source§impl<R> ReadVersionedType<R> for FetchResponseTopicwhere
R: Read,
impl<R> ReadVersionedType<R> for FetchResponseTopicwhere
R: Read,
fn read_versioned( reader: &mut R, version: ApiVersion, ) -> Result<Self, ReadVersionedError>
Auto Trait Implementations§
impl Freeze for FetchResponseTopic
impl RefUnwindSafe for FetchResponseTopic
impl Send for FetchResponseTopic
impl Sync for FetchResponseTopic
impl Unpin for FetchResponseTopic
impl UnwindSafe for FetchResponseTopic
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