pub struct PartitionedTopicInternalStats {
pub metadata: Option<Box<PartitionedTopicMetadata>>,
pub partitions: Option<HashMap<String, PersistentTopicInternalStats>>,
}Fields§
§metadata: Option<Box<PartitionedTopicMetadata>>§partitions: Option<HashMap<String, PersistentTopicInternalStats>>Implementations§
Trait Implementations§
Source§impl Clone for PartitionedTopicInternalStats
impl Clone for PartitionedTopicInternalStats
Source§fn clone(&self) -> PartitionedTopicInternalStats
fn clone(&self) -> PartitionedTopicInternalStats
Returns a duplicate 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 Default for PartitionedTopicInternalStats
impl Default for PartitionedTopicInternalStats
Source§fn default() -> PartitionedTopicInternalStats
fn default() -> PartitionedTopicInternalStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PartitionedTopicInternalStats
impl<'de> Deserialize<'de> for PartitionedTopicInternalStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PartitionedTopicInternalStats
impl PartialEq for PartitionedTopicInternalStats
Source§fn eq(&self, other: &PartitionedTopicInternalStats) -> bool
fn eq(&self, other: &PartitionedTopicInternalStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PartitionedTopicInternalStats
Auto Trait Implementations§
impl Freeze for PartitionedTopicInternalStats
impl RefUnwindSafe for PartitionedTopicInternalStats
impl Send for PartitionedTopicInternalStats
impl Sync for PartitionedTopicInternalStats
impl Unpin for PartitionedTopicInternalStats
impl UnwindSafe for PartitionedTopicInternalStats
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