pub struct Metrics {
pub created: Instant,
pub reused: Option<Instant>,
pub reuse_count: usize,
}
Expand description
Statistics regarding an connection returned by the pool
Fields§
§created: Instant
The instant when this connection was created
reused: Option<Instant>
The instant when this connection was last used
reuse_count: usize
The number of times the connections was reused
Implementations§
Trait Implementations§
impl Copy for Metrics
Auto Trait Implementations§
impl Freeze for Metrics
impl RefUnwindSafe for Metrics
impl Send for Metrics
impl Sync for Metrics
impl Unpin for Metrics
impl UnwindSafe for Metrics
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