#[non_exhaustive]pub struct MetadataResponseTopic {
pub error_code: i16,
pub topic_id: Uuid,
pub is_internal: bool,
pub partitions: Vec<MetadataResponsePartition>,
pub topic_authorized_operations: i32,
pub unknown_tagged_fields: BTreeMap<i32, Bytes>,
}
Expand description
Valid versions: 0-12
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.error_code: i16
The topic error, or 0 if there was no error.
Supported API versions: 0-12
topic_id: Uuid
The topic id.
Supported API versions: 10-12
is_internal: bool
True if the topic is internal.
Supported API versions: 1-12
partitions: Vec<MetadataResponsePartition>
Each partition in the topic.
Supported API versions: 0-12
32-bit bitfield to represent authorized operations for this topic.
Supported API versions: 8-12
unknown_tagged_fields: BTreeMap<i32, Bytes>
Other tagged fields
Trait Implementations§
source§impl Builder for MetadataResponseTopic
impl Builder for MetadataResponseTopic
§type Builder = MetadataResponseTopicBuilder
type Builder = MetadataResponseTopicBuilder
The
derive_builder::Builder
type for this protocol item.source§impl Clone for MetadataResponseTopic
impl Clone for MetadataResponseTopic
source§fn clone(&self) -> MetadataResponseTopic
fn clone(&self) -> MetadataResponseTopic
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 MetadataResponseTopic
impl Debug for MetadataResponseTopic
source§impl Default for MetadataResponseTopic
impl Default for MetadataResponseTopic
source§impl Message for MetadataResponseTopic
impl Message for MetadataResponseTopic
source§const VERSIONS: VersionRange = _
const VERSIONS: VersionRange = _
The valid versions for this message.
source§const DEPRECATED_VERSIONS: Option<VersionRange> = None
const DEPRECATED_VERSIONS: Option<VersionRange> = None
The deprecated versions for this message.
source§impl PartialEq for MetadataResponseTopic
impl PartialEq for MetadataResponseTopic
source§fn eq(&self, other: &MetadataResponseTopic) -> bool
fn eq(&self, other: &MetadataResponseTopic) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MetadataResponseTopic
Auto Trait Implementations§
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