pub struct NumericStatistics {
pub min: f64,
pub max: f64,
pub mean: f64,
pub median: f64,
pub std_dev: f64,
}Expand description
Numeric statistics
Fields§
§min: f64§max: f64§mean: f64§median: f64§std_dev: f64Trait Implementations§
Source§impl Clone for NumericStatistics
impl Clone for NumericStatistics
Source§fn clone(&self) -> NumericStatistics
fn clone(&self) -> NumericStatistics
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 moreSource§impl Debug for NumericStatistics
impl Debug for NumericStatistics
Source§impl<'de> Deserialize<'de> for NumericStatistics
impl<'de> Deserialize<'de> for NumericStatistics
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for NumericStatistics
impl RefUnwindSafe for NumericStatistics
impl Send for NumericStatistics
impl Sync for NumericStatistics
impl Unpin for NumericStatistics
impl UnwindSafe for NumericStatistics
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