pub struct FieldStats {
pub count: usize,
pub minimum: f64,
pub maximum: f64,
pub mean: f64,
pub population_variance: f64,
}Expand description
Aggregate statistics for every cell in one scalar field.
Fields§
§count: usizeNumber of analyzed cells.
minimum: f64Smallest scalar sample.
maximum: f64Largest scalar sample.
mean: f64Row-major online mean.
population_variance: f64Population variance computed in deterministic row-major order.
Trait Implementations§
Source§impl Clone for FieldStats
impl Clone for FieldStats
Source§fn clone(&self) -> FieldStats
fn clone(&self) -> FieldStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FieldStats
Source§impl Debug for FieldStats
impl Debug for FieldStats
Source§impl PartialEq for FieldStats
impl PartialEq for FieldStats
impl StructuralPartialEq for FieldStats
Auto Trait Implementations§
impl Freeze for FieldStats
impl RefUnwindSafe for FieldStats
impl Send for FieldStats
impl Sync for FieldStats
impl Unpin for FieldStats
impl UnsafeUnpin for FieldStats
impl UnwindSafe for FieldStats
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