pub struct SimpleStat {
pub count: i32,
pub mean: f64,
pub deviation: f64,
}Expand description
Simple statistics: (mean and standard deviation)
Fields§
§count: i32§mean: f64§deviation: f64standard deviation
Trait Implementations§
Source§impl Debug for SimpleStat
impl Debug for SimpleStat
Source§impl Default for SimpleStat
impl Default for SimpleStat
Source§fn default() -> SimpleStat
fn default() -> SimpleStat
Returns the “default value” for a type. Read more
Source§impl PartialEq for SimpleStat
impl PartialEq for SimpleStat
impl StructuralPartialEq for SimpleStat
Auto Trait Implementations§
impl Freeze for SimpleStat
impl RefUnwindSafe for SimpleStat
impl Send for SimpleStat
impl Sync for SimpleStat
impl Unpin for SimpleStat
impl UnwindSafe for SimpleStat
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