pub struct PoolStats {
pub total: u32,
pub active: u32,
pub busy: u32,
pub draining: u32,
pub dead: u32,
pub total_capacity: u32,
pub used_capacity: u32,
}Expand description
Aggregate statistics about the worker pool.
Fields§
§total: u32§active: u32§busy: u32§draining: u32§dead: u32§total_capacity: u32§used_capacity: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for PoolStats
impl RefUnwindSafe for PoolStats
impl Send for PoolStats
impl Sync for PoolStats
impl Unpin for PoolStats
impl UnsafeUnpin for PoolStats
impl UnwindSafe for PoolStats
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