pub struct H2PoolStats {
pub pool_size: u32,
pub active_connections: u32,
pub total_streams: u64,
pub idle_timeout_secs: u64,
}Expand description
Pool statistics snapshot.
Fields§
§pool_size: u32§active_connections: u32§total_streams: u64§idle_timeout_secs: u64Trait Implementations§
Source§impl Clone for H2PoolStats
impl Clone for H2PoolStats
Source§fn clone(&self) -> H2PoolStats
fn clone(&self) -> H2PoolStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for H2PoolStats
impl RefUnwindSafe for H2PoolStats
impl Send for H2PoolStats
impl Sync for H2PoolStats
impl Unpin for H2PoolStats
impl UnsafeUnpin for H2PoolStats
impl UnwindSafe for H2PoolStats
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