pub struct PoolStats {
pub total: usize,
pub healthy: usize,
pub open: usize,
}Expand description
A snapshot of pool health at a point in time.
Fields§
§total: usizeTotal proxies in the pool.
healthy: usizeProxies that passed the last health check.
open: usizeProxies whose circuit breaker is currently Open.
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 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