pub struct ConnectionMetricsSummary {
pub active_connections: usize,
pub total_connections: u64,
pub failed_connections: u64,
pub migrated_connections: u64,
}
Expand description
Connection metrics summary
Fields§
§active_connections: usize
Number of currently active connections
total_connections: u64
Total connections observed
failed_connections: u64
Number of failed connections
migrated_connections: u64
Number of connections that migrated paths
Trait Implementations§
Source§impl Clone for ConnectionMetricsSummary
impl Clone for ConnectionMetricsSummary
Source§fn clone(&self) -> ConnectionMetricsSummary
fn clone(&self) -> ConnectionMetricsSummary
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 moreAuto Trait Implementations§
impl Freeze for ConnectionMetricsSummary
impl RefUnwindSafe for ConnectionMetricsSummary
impl Send for ConnectionMetricsSummary
impl Sync for ConnectionMetricsSummary
impl Unpin for ConnectionMetricsSummary
impl UnwindSafe for ConnectionMetricsSummary
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