pub struct NumericStats {
pub min: Option<f64>,
pub max: Option<f64>,
pub mean: Option<f64>,
pub null_count: usize,
}Fields§
§min: Option<f64>§max: Option<f64>§mean: Option<f64>§null_count: usizeTrait Implementations§
Source§impl Clone for NumericStats
impl Clone for NumericStats
Source§fn clone(&self) -> NumericStats
fn clone(&self) -> NumericStats
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 moreSource§impl Debug for NumericStats
impl Debug for NumericStats
Source§impl PartialEq for NumericStats
impl PartialEq for NumericStats
impl StructuralPartialEq for NumericStats
Auto Trait Implementations§
impl Freeze for NumericStats
impl RefUnwindSafe for NumericStats
impl Send for NumericStats
impl Sync for NumericStats
impl Unpin for NumericStats
impl UnsafeUnpin for NumericStats
impl UnwindSafe for NumericStats
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