Struct parquet2::statistics::BooleanStatistics
source · pub struct BooleanStatistics {
pub null_count: Option<i64>,
pub distinct_count: Option<i64>,
pub max_value: Option<bool>,
pub min_value: Option<bool>,
}
Fields§
§null_count: Option<i64>
§distinct_count: Option<i64>
§max_value: Option<bool>
§min_value: Option<bool>
Trait Implementations§
source§impl Clone for BooleanStatistics
impl Clone for BooleanStatistics
source§fn clone(&self) -> BooleanStatistics
fn clone(&self) -> BooleanStatistics
Returns a copy 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 BooleanStatistics
impl Debug for BooleanStatistics
source§impl PartialEq for BooleanStatistics
impl PartialEq for BooleanStatistics
source§fn eq(&self, other: &BooleanStatistics) -> bool
fn eq(&self, other: &BooleanStatistics) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Statistics for BooleanStatistics
impl Statistics for BooleanStatistics
fn as_any(&self) -> &dyn Any
fn physical_type(&self) -> &PhysicalType
fn null_count(&self) -> Option<i64>
impl Eq for BooleanStatistics
impl StructuralPartialEq for BooleanStatistics
Auto Trait Implementations§
impl Freeze for BooleanStatistics
impl RefUnwindSafe for BooleanStatistics
impl Send for BooleanStatistics
impl Sync for BooleanStatistics
impl Unpin for BooleanStatistics
impl UnwindSafe for BooleanStatistics
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