pub struct PoolStats {
pub running: u8,
pub busy: u8,
pub min: u8,
pub max: u8,
}Expand description
Snapshot of an elastic pool’s current load.
Fields§
§running: u8Number of currently running members.
busy: u8Number of running members marked busy.
min: u8Minimum member count.
max: u8Maximum member count.
Implementations§
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