pub struct PoolStats {
pub total_checkouts: u64,
pub total_connections_created: u64,
pub total_connections_closed: u64,
pub validation_failures: u64,
pub lifetime_expirations: u64,
pub idle_expirations: u64,
pub checkout_timeouts: u64,
}Expand description
Pool statistics.
Fields§
§total_checkouts: u64§total_connections_created: u64§total_connections_closed: u64§validation_failures: u64§lifetime_expirations: u64§idle_expirations: u64§checkout_timeouts: u64Trait 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