pub struct DescribeClusterBroker {
pub host: StrBytes,
pub port: i32,
pub rack: Option<StrBytes>,
pub unknown_tagged_fields: BTreeMap<i32, Vec<u8>>,
}Expand description
Valid versions: 0
Fields
host: StrBytesThe broker hostname.
Supported API versions: 0
port: i32The broker port.
Supported API versions: 0
rack: Option<StrBytes>The rack of the broker, or null if it has not been assigned to a rack.
Supported API versions: 0
unknown_tagged_fields: BTreeMap<i32, Vec<u8>>Other tagged fields
Trait Implementations
sourceimpl Clone for DescribeClusterBroker
impl Clone for DescribeClusterBroker
sourcefn clone(&self) -> DescribeClusterBroker
fn clone(&self) -> DescribeClusterBroker
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DescribeClusterBroker
impl Debug for DescribeClusterBroker
sourceimpl Default for DescribeClusterBroker
impl Default for DescribeClusterBroker
sourceimpl Message for DescribeClusterBroker
impl Message for DescribeClusterBroker
sourceconst VERSIONS: VersionRange = VersionRange { min: 0, max: 0 }
const VERSIONS: VersionRange = VersionRange { min: 0, max: 0 }
The valid versions for this message.
sourceimpl PartialEq<DescribeClusterBroker> for DescribeClusterBroker
impl PartialEq<DescribeClusterBroker> for DescribeClusterBroker
sourcefn eq(&self, other: &DescribeClusterBroker) -> bool
fn eq(&self, other: &DescribeClusterBroker) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DescribeClusterBroker) -> bool
fn ne(&self, other: &DescribeClusterBroker) -> bool
This method tests for !=.
impl StructuralPartialEq for DescribeClusterBroker
Auto Trait Implementations
impl RefUnwindSafe for DescribeClusterBroker
impl Send for DescribeClusterBroker
impl Sync for DescribeClusterBroker
impl Unpin for DescribeClusterBroker
impl UnwindSafe for DescribeClusterBroker
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more