pub struct ArrowColumnStatistics {
pub null_count: Option<u64>,
pub distinct_count: Option<u64>,
pub min_value: Option<Box<dyn Array>>,
pub max_value: Option<Box<dyn Array>>,
}
Expand description
Arrow-deserialized parquet statistics of a leaf-column
Fields§
§null_count: Option<u64>
§distinct_count: Option<u64>
§min_value: Option<Box<dyn Array>>
§max_value: Option<Box<dyn Array>>
Trait Implementations§
Source§impl Debug for ArrowColumnStatistics
impl Debug for ArrowColumnStatistics
Source§impl PartialEq for ArrowColumnStatistics
impl PartialEq for ArrowColumnStatistics
impl StructuralPartialEq for ArrowColumnStatistics
Auto Trait Implementations§
impl Freeze for ArrowColumnStatistics
impl !RefUnwindSafe for ArrowColumnStatistics
impl Send for ArrowColumnStatistics
impl Sync for ArrowColumnStatistics
impl Unpin for ArrowColumnStatistics
impl !UnwindSafe for ArrowColumnStatistics
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more