Struct kafka_api::fetch_request::FetchTopic
source · 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 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