pub struct TopologyStats {
pub total_msgs: u64,
pub max_fan_out: u32,
pub max_fan_in: u32,
pub max_fan_out_src: u32,
pub max_fan_in_dst: u32,
pub current_recommendation: TopologyKind,
pub recommendation_epoch: u64,
}Fields§
§total_msgs: u64§max_fan_out: u32§max_fan_in: u32§max_fan_out_src: u32§max_fan_in_dst: u32§current_recommendation: TopologyKind§recommendation_epoch: u64Trait Implementations§
Source§impl Clone for TopologyStats
impl Clone for TopologyStats
Source§fn clone(&self) -> TopologyStats
fn clone(&self) -> TopologyStats
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 Copy for TopologyStats
Source§impl Debug for TopologyStats
impl Debug for TopologyStats
impl Eq for TopologyStats
Source§impl PartialEq for TopologyStats
impl PartialEq for TopologyStats
impl StructuralPartialEq for TopologyStats
Auto Trait Implementations§
impl Freeze for TopologyStats
impl RefUnwindSafe for TopologyStats
impl Send for TopologyStats
impl Sync for TopologyStats
impl Unpin for TopologyStats
impl UnsafeUnpin for TopologyStats
impl UnwindSafe for TopologyStats
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