pub struct Stats {
pub min: i64,
pub max: i64,
pub avg: f64,
pub stddev: f64,
pub samples: u64,
pub sum: i64,
}Available on crate feature
metrics only.Expand description
Stats describing a distribution of samples.
Time units are in milliseconds, data size units are in bytes.
Fields§
§min: i64§max: i64§avg: f64§stddev: f64§samples: u64§sum: i64Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnwindSafe for Stats
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