pub struct ArrayStats {
pub min: f64,
pub max: f64,
pub sum: f64,
pub count: usize,
}
Expand description
Statistics calculated for numeric arrays
Fields§
§min: f64
§max: f64
§sum: f64
§count: usize
Implementations§
Trait Implementations§
Source§impl Clone for ArrayStats
impl Clone for ArrayStats
Source§fn clone(&self) -> ArrayStats
fn clone(&self) -> ArrayStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ArrayStats
impl RefUnwindSafe for ArrayStats
impl Send for ArrayStats
impl Sync for ArrayStats
impl Unpin for ArrayStats
impl UnwindSafe for ArrayStats
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