Struct RoutingStatistics
pub struct RoutingStatistics {
pub messages_routed: u64,
pub routing_errors: u64,
pub active_routes: usize,
}Expand description
Routing statistics
Fields§
§messages_routed: u64Total messages routed
routing_errors: u64Routing errors
active_routes: usizeActive routes
Trait Implementations§
§impl Clone for RoutingStatistics
impl Clone for RoutingStatistics
§fn clone(&self) -> RoutingStatistics
fn clone(&self) -> RoutingStatistics
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 more§impl Debug for RoutingStatistics
impl Debug for RoutingStatistics
§impl Default for RoutingStatistics
impl Default for RoutingStatistics
§fn default() -> RoutingStatistics
fn default() -> RoutingStatistics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RoutingStatistics
impl RefUnwindSafe for RoutingStatistics
impl Send for RoutingStatistics
impl Sync for RoutingStatistics
impl Unpin for RoutingStatistics
impl UnwindSafe for RoutingStatistics
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