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, Vec<u8>>,
}
Expand description
Valid versions: 0-12
Fields§
§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, Vec<u8>>
Other tagged fields
Trait Implementations§
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.