pub struct SampleStat {
pub count: i32,
pub mode: i32,
pub median: i32,
pub median_frequency: i32,
pub histogram_bins: i32,
pub mean: f64,
pub deviation: f64,
}Expand description
Sample statistics: (mean, mode, median and standard deviation)
Fields§
§count: i32§mode: i32§median: i32§median_frequency: i32§histogram_bins: i32§mean: f64§deviation: f64standard deviation
Trait Implementations§
Source§impl Debug for SampleStat
impl Debug for SampleStat
Source§impl Default for SampleStat
impl Default for SampleStat
Source§fn default() -> SampleStat
fn default() -> SampleStat
Returns the “default value” for a type. Read more
Source§impl PartialEq for SampleStat
impl PartialEq for SampleStat
impl StructuralPartialEq for SampleStat
Auto Trait Implementations§
impl Freeze for SampleStat
impl RefUnwindSafe for SampleStat
impl Send for SampleStat
impl Sync for SampleStat
impl Unpin for SampleStat
impl UnwindSafe for SampleStat
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more