pub struct MetadataResponseTopic {
pub error_code: i16,
pub name: Option<String>,
pub topic_id: Uuid,
pub is_internal: bool,
pub partitions: Vec<MetadataResponsePartition>,
pub topic_authorized_operations: i32,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§error_code: i16§name: Option<String>§topic_id: Uuid§is_internal: bool§partitions: Vec<MetadataResponsePartition>§unknown_tagged_fields: UnknownTaggedFieldsTrait 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 (const: unstable) · 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 Decode<'_> for MetadataResponseTopic
impl Decode<'_> for MetadataResponseTopic
Source§impl Default for MetadataResponseTopic
impl Default for MetadataResponseTopic
Source§impl Encode for MetadataResponseTopic
impl Encode for MetadataResponseTopic
impl Eq for MetadataResponseTopic
Source§impl PartialEq for MetadataResponseTopic
impl PartialEq for MetadataResponseTopic
Source§fn eq(&self, other: &MetadataResponseTopic) -> bool
fn eq(&self, other: &MetadataResponseTopic) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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