pub struct PoolStats {
pub total_dispatched: u64,
pub total_dropped: u64,
pub workers: Vec<WorkerStats>,
}Expand description
Pool-level statistics.
Fields§
§total_dispatched: u64§total_dropped: u64§workers: Vec<WorkerStats>Trait 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 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