pub struct HistogramStats {
pub count: usize,
pub sum: f64,
pub min: f64,
pub max: f64,
pub mean: f64,
}Expand description
Statistics computed from histogram values
Fields§
§count: usizeNumber of samples
sum: f64Sum of all values
min: f64Minimum value observed
max: f64Maximum value observed
mean: f64Mean of all values
Trait Implementations§
Source§impl Clone for HistogramStats
impl Clone for HistogramStats
Source§fn clone(&self) -> HistogramStats
fn clone(&self) -> HistogramStats
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 HistogramStats
impl RefUnwindSafe for HistogramStats
impl Send for HistogramStats
impl Sync for HistogramStats
impl Unpin for HistogramStats
impl UnwindSafe for HistogramStats
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