pub struct ChannelManagerStats {
pub total_channels: usize,
pub total_connections_in_channels: usize,
pub public_channels: usize,
pub private_channels: usize,
pub protected_channels: usize,
pub empty_channels: usize,
}Expand description
Channel manager statistics
Fields§
§total_channels: usize§total_connections_in_channels: usize§public_channels: usize§private_channels: usize§protected_channels: usize§empty_channels: usizeTrait Implementations§
Source§impl Clone for ChannelManagerStats
impl Clone for ChannelManagerStats
Source§fn clone(&self) -> ChannelManagerStats
fn clone(&self) -> ChannelManagerStats
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 Debug for ChannelManagerStats
impl Debug for ChannelManagerStats
Source§impl<'de> Deserialize<'de> for ChannelManagerStats
impl<'de> Deserialize<'de> for ChannelManagerStats
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
Auto Trait Implementations§
impl Freeze for ChannelManagerStats
impl RefUnwindSafe for ChannelManagerStats
impl Send for ChannelManagerStats
impl Sync for ChannelManagerStats
impl Unpin for ChannelManagerStats
impl UnwindSafe for ChannelManagerStats
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