Struct test::stats::Summary [−][src]
pub struct Summary {
pub sum: f64,
pub min: f64,
pub max: f64,
pub mean: f64,
pub median: f64,
pub var: f64,
pub std_dev: f64,
pub std_dev_pct: f64,
pub median_abs_dev: f64,
pub median_abs_dev_pct: f64,
pub quartiles: (f64, f64, f64),
pub iqr: f64,
}🔬 This is a nightly-only experimental API. (
test)Expand description
Extracted collection of all the summary statistics of a sample set.
Fields
sum: f64🔬 This is a nightly-only experimental API. (
test)min: f64🔬 This is a nightly-only experimental API. (
test)max: f64🔬 This is a nightly-only experimental API. (
test)mean: f64🔬 This is a nightly-only experimental API. (
test)median: f64🔬 This is a nightly-only experimental API. (
test)var: f64🔬 This is a nightly-only experimental API. (
test)std_dev: f64🔬 This is a nightly-only experimental API. (
test)std_dev_pct: f64🔬 This is a nightly-only experimental API. (
test)median_abs_dev: f64🔬 This is a nightly-only experimental API. (
test)median_abs_dev_pct: f64🔬 This is a nightly-only experimental API. (
test)quartiles: (f64, f64, f64)🔬 This is a nightly-only experimental API. (
test)iqr: f64🔬 This is a nightly-only experimental API. (
test)Implementations
impl Summary[src]
impl Summary[src]Trait Implementations
impl Copy for Summary[src]
impl StructuralPartialEq for Summary[src]
Auto Trait Implementations
impl RefUnwindSafe for Summary
impl Send for Summary
impl Sync for Summary
impl Unpin for Summary
impl UnwindSafe for Summary
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more