pub struct PoolStats {
pub available_connections: usize,
pub in_use_connections: usize,
pub total_connections: usize,
pub max_connections: usize,
}Expand description
Statistics about the connection pool
Fields§
§available_connections: usize§in_use_connections: usize§total_connections: usize§max_connections: usizeTrait 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