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