pub struct FetchTopic {
pub topic: String,
pub topic_id: Uuid,
pub partitions: Vec<FetchPartition>,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
Fields§
§topic: String
The name of the topic to fetch.
topic_id: Uuid
The unique topic ID
partitions: Vec<FetchPartition>
The partitions to fetch.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
Source§impl Clone for FetchTopic
impl Clone for FetchTopic
Source§fn clone(&self) -> FetchTopic
fn clone(&self) -> FetchTopic
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 FetchTopic
impl Debug for FetchTopic
Source§impl Decodable for FetchTopic
impl Decodable for FetchTopic
Source§impl Default for FetchTopic
impl Default for FetchTopic
Source§fn default() -> FetchTopic
fn default() -> FetchTopic
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FetchTopic
impl RefUnwindSafe for FetchTopic
impl Send for FetchTopic
impl Sync for FetchTopic
impl Unpin for FetchTopic
impl UnwindSafe for FetchTopic
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