pub struct AggregateClientStats {
pub client_count: usize,
pub total_requests: u64,
pub total_pending: usize,
pub total_rejected: u64,
pub max_load_factor: f32,
}Expand description
Aggregate statistics across all clients.
Fields§
§client_count: usize§total_requests: u64§total_pending: usize§total_rejected: u64§max_load_factor: f32Trait Implementations§
Source§impl Clone for AggregateClientStats
impl Clone for AggregateClientStats
Source§fn clone(&self) -> AggregateClientStats
fn clone(&self) -> AggregateClientStats
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 AggregateClientStats
impl RefUnwindSafe for AggregateClientStats
impl Send for AggregateClientStats
impl Sync for AggregateClientStats
impl Unpin for AggregateClientStats
impl UnsafeUnpin for AggregateClientStats
impl UnwindSafe for AggregateClientStats
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