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