pub struct DescribeTopicPartitionsTopicResponseV0 {
pub error_code: i16,
pub name: Option<String>,
pub topic_id: [u8; 16],
pub is_internal: bool,
pub partitions: Vec<DescribeTopicPartitionsPartitionResponseV0>,
pub topic_authorized_operations: i32,
}Expand description
One topic returned by DescribeTopicPartitions v0.
Fields§
§error_code: i16§name: Option<String>§topic_id: [u8; 16]§is_internal: bool§partitions: Vec<DescribeTopicPartitionsPartitionResponseV0>Trait Implementations§
Source§impl Clone for DescribeTopicPartitionsTopicResponseV0
impl Clone for DescribeTopicPartitionsTopicResponseV0
Source§fn clone(&self) -> DescribeTopicPartitionsTopicResponseV0
fn clone(&self) -> DescribeTopicPartitionsTopicResponseV0
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 moreimpl Eq for DescribeTopicPartitionsTopicResponseV0
impl StructuralPartialEq for DescribeTopicPartitionsTopicResponseV0
Auto Trait Implementations§
impl Freeze for DescribeTopicPartitionsTopicResponseV0
impl RefUnwindSafe for DescribeTopicPartitionsTopicResponseV0
impl Send for DescribeTopicPartitionsTopicResponseV0
impl Sync for DescribeTopicPartitionsTopicResponseV0
impl Unpin for DescribeTopicPartitionsTopicResponseV0
impl UnsafeUnpin for DescribeTopicPartitionsTopicResponseV0
impl UnwindSafe for DescribeTopicPartitionsTopicResponseV0
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