pub struct AsyncPoolStats {
pub size: usize,
pub healthy: usize,
pub total_requests: usize,
pub is_shutdown: bool,
}Expand description
Pool statistics snapshot.
Fields§
§size: usize§healthy: usize§total_requests: usize§is_shutdown: boolTrait Implementations§
Source§impl Clone for AsyncPoolStats
impl Clone for AsyncPoolStats
Source§fn clone(&self) -> AsyncPoolStats
fn clone(&self) -> AsyncPoolStats
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 AsyncPoolStats
impl RefUnwindSafe for AsyncPoolStats
impl Send for AsyncPoolStats
impl Sync for AsyncPoolStats
impl Unpin for AsyncPoolStats
impl UnwindSafe for AsyncPoolStats
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