pub struct PoolStats {
pub total_connections: usize,
pub healthy_connections: usize,
pub hosts: usize,
}Expand description
Pool statistics
Fields§
§total_connections: usizeTotal number of connections
healthy_connections: usizeNumber of healthy connections
hosts: usizeNumber of hosts
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