pub struct AggregateStats {
pub min: f64,
pub max: f64,
pub mean: f64,
pub std_dev: f64,
pub p50: f64,
pub p95: f64,
pub p99: f64,
pub count: usize,
}Expand description
Compute summary statistics over a slice of f64 values.
Fields§
§min: f64§max: f64§mean: f64§std_dev: f64§p50: f64§p95: f64§p99: f64§count: usizeImplementations§
Trait Implementations§
Source§impl Clone for AggregateStats
impl Clone for AggregateStats
Source§fn clone(&self) -> AggregateStats
fn clone(&self) -> AggregateStats
Returns a duplicate of the value. Read more
1.0.0 · 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 AggregateStats
impl RefUnwindSafe for AggregateStats
impl Send for AggregateStats
impl Sync for AggregateStats
impl Unpin for AggregateStats
impl UnsafeUnpin for AggregateStats
impl UnwindSafe for AggregateStats
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