pub struct DescribeTopicPartitionsResponseTopic<'a> {
pub error_code: i16,
pub name: Option<&'a str>,
pub topic_id: Uuid,
pub is_internal: bool,
pub partitions: Vec<DescribeTopicPartitionsResponsePartition>,
pub topic_authorized_operations: i32,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§error_code: i16§name: Option<&'a str>§topic_id: Uuid§is_internal: bool§partitions: Vec<DescribeTopicPartitionsResponsePartition>§unknown_tagged_fields: UnknownTaggedFieldsImplementations§
Source§impl DescribeTopicPartitionsResponseTopic<'_>
impl DescribeTopicPartitionsResponseTopic<'_>
pub fn to_owned(&self) -> DescribeTopicPartitionsResponseTopic
Trait Implementations§
Source§impl<'a> Clone for DescribeTopicPartitionsResponseTopic<'a>
impl<'a> Clone for DescribeTopicPartitionsResponseTopic<'a>
Source§fn clone(&self) -> DescribeTopicPartitionsResponseTopic<'a>
fn clone(&self) -> DescribeTopicPartitionsResponseTopic<'a>
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<'a> Debug for DescribeTopicPartitionsResponseTopic<'a>
impl<'a> Debug for DescribeTopicPartitionsResponseTopic<'a>
Source§impl<'de> DecodeBorrow<'de> for DescribeTopicPartitionsResponseTopic<'de>
impl<'de> DecodeBorrow<'de> for DescribeTopicPartitionsResponseTopic<'de>
fn decode_borrow( buf: &mut &'de [u8], version: i16, ) -> Result<Self, ProtocolError>
Source§impl Default for DescribeTopicPartitionsResponseTopic<'_>
impl Default for DescribeTopicPartitionsResponseTopic<'_>
Source§impl Encode for DescribeTopicPartitionsResponseTopic<'_>
impl Encode for DescribeTopicPartitionsResponseTopic<'_>
impl<'a> Eq for DescribeTopicPartitionsResponseTopic<'a>
Source§impl<'a> PartialEq for DescribeTopicPartitionsResponseTopic<'a>
impl<'a> PartialEq for DescribeTopicPartitionsResponseTopic<'a>
Source§fn eq(&self, other: &DescribeTopicPartitionsResponseTopic<'a>) -> bool
fn eq(&self, other: &DescribeTopicPartitionsResponseTopic<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for DescribeTopicPartitionsResponseTopic<'a>
Auto Trait Implementations§
impl<'a> Freeze for DescribeTopicPartitionsResponseTopic<'a>
impl<'a> RefUnwindSafe for DescribeTopicPartitionsResponseTopic<'a>
impl<'a> Send for DescribeTopicPartitionsResponseTopic<'a>
impl<'a> Sync for DescribeTopicPartitionsResponseTopic<'a>
impl<'a> Unpin for DescribeTopicPartitionsResponseTopic<'a>
impl<'a> UnsafeUnpin for DescribeTopicPartitionsResponseTopic<'a>
impl<'a> UnwindSafe for DescribeTopicPartitionsResponseTopic<'a>
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