Struct visioncortex::SimpleStat
source · 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
source§fn eq(&self, other: &SimpleStat) -> bool
fn eq(&self, other: &SimpleStat) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SimpleStat
Auto Trait Implementations§
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