pub struct TopicSnapshot {
pub name: String,
pub partitions: Vec<PartitionSnapshot>,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§name: String§partitions: Vec<PartitionSnapshot>§unknown_tagged_fields: UnknownTaggedFieldsTrait Implementations§
Source§impl Clone for TopicSnapshot
impl Clone for TopicSnapshot
Source§fn clone(&self) -> TopicSnapshot
fn clone(&self) -> TopicSnapshot
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 Debug for TopicSnapshot
impl Debug for TopicSnapshot
Source§impl Decode<'_> for TopicSnapshot
impl Decode<'_> for TopicSnapshot
Source§impl Default for TopicSnapshot
impl Default for TopicSnapshot
Source§fn default() -> TopicSnapshot
fn default() -> TopicSnapshot
Returns the “default value” for a type. Read more
Source§impl Encode for TopicSnapshot
impl Encode for TopicSnapshot
impl Eq for TopicSnapshot
Source§impl PartialEq for TopicSnapshot
impl PartialEq for TopicSnapshot
Source§fn eq(&self, other: &TopicSnapshot) -> bool
fn eq(&self, other: &TopicSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TopicSnapshot
Auto Trait Implementations§
impl Freeze for TopicSnapshot
impl RefUnwindSafe for TopicSnapshot
impl Send for TopicSnapshot
impl Sync for TopicSnapshot
impl Unpin for TopicSnapshot
impl UnsafeUnpin for TopicSnapshot
impl UnwindSafe for TopicSnapshot
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