pub struct MetadataResponseTopic {
pub error: Option<Error>,
pub name: String_,
pub is_internal: Option<Boolean>,
pub partitions: Vec<MetadataResponsePartition>,
}Fields§
§error: Option<Error>The topic error if any
name: String_The topic name
is_internal: Option<Boolean>True if the topic is internal
partitions: Vec<MetadataResponsePartition>Each partition in the topic
Trait Implementations§
Source§impl Clone for MetadataResponseTopic
impl Clone for MetadataResponseTopic
Source§fn clone(&self) -> MetadataResponseTopic
fn clone(&self) -> MetadataResponseTopic
Returns a duplicate 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 MetadataResponseTopic
impl Debug for MetadataResponseTopic
Source§impl PartialEq for MetadataResponseTopic
impl PartialEq for MetadataResponseTopic
Source§impl<R> ReadVersionedType<R> for MetadataResponseTopicwhere
R: Read,
impl<R> ReadVersionedType<R> for MetadataResponseTopicwhere
R: Read,
fn read_versioned( reader: &mut R, version: ApiVersion, ) -> Result<Self, ReadVersionedError>
impl Eq for MetadataResponseTopic
impl StructuralPartialEq for MetadataResponseTopic
Auto Trait Implementations§
impl Freeze for MetadataResponseTopic
impl RefUnwindSafe for MetadataResponseTopic
impl Send for MetadataResponseTopic
impl Sync for MetadataResponseTopic
impl Unpin for MetadataResponseTopic
impl UnwindSafe for MetadataResponseTopic
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