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