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