Struct datafusion_common::stats::ColumnStatistics
source · pub struct ColumnStatistics {
pub null_count: Option<usize>,
pub max_value: Option<ScalarValue>,
pub min_value: Option<ScalarValue>,
pub distinct_count: Option<usize>,
}
Expand description
Statistics for a column within a relation
Fields
null_count: Option<usize>
Number of null values on column
max_value: Option<ScalarValue>
Maximum value of column
min_value: Option<ScalarValue>
Minimum value of column
distinct_count: Option<usize>
Number of distinct values
Trait Implementations
sourceimpl Clone for ColumnStatistics
impl Clone for ColumnStatistics
sourcefn clone(&self) -> ColumnStatistics
fn clone(&self) -> ColumnStatistics
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ColumnStatistics
impl Debug for ColumnStatistics
sourceimpl Default for ColumnStatistics
impl Default for ColumnStatistics
sourcefn default() -> ColumnStatistics
fn default() -> ColumnStatistics
Returns the “default value” for a type. Read more
sourceimpl PartialEq<ColumnStatistics> for ColumnStatistics
impl PartialEq<ColumnStatistics> for ColumnStatistics
sourcefn eq(&self, other: &ColumnStatistics) -> bool
fn eq(&self, other: &ColumnStatistics) -> bool
impl Eq for ColumnStatistics
impl StructuralEq for ColumnStatistics
impl StructuralPartialEq for ColumnStatistics
Auto Trait Implementations
impl RefUnwindSafe for ColumnStatistics
impl Send for ColumnStatistics
impl Sync for ColumnStatistics
impl Unpin for ColumnStatistics
impl UnwindSafe for ColumnStatistics
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more