Struct polars::export::arrow::io::parquet::read::statistics::Utf8Statistics
source · [−]pub struct Utf8Statistics {
pub null_count: Option<i64>,
pub distinct_count: Option<i64>,
pub min_value: Option<String>,
pub max_value: Option<String>,
}
This is supported on crate feature
io_parquet
only.Expand description
Statistics of a string parquet column
Fields
null_count: Option<i64>
number of nulls
distinct_count: Option<i64>
number of dictinct values
min_value: Option<String>
Minimum
max_value: Option<String>
Maximum
Trait Implementations
sourceimpl Clone for Utf8Statistics
impl Clone for Utf8Statistics
sourcefn clone(&self) -> Utf8Statistics
fn clone(&self) -> Utf8Statistics
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 more
sourceimpl Debug for Utf8Statistics
impl Debug for Utf8Statistics
sourceimpl PartialEq<Utf8Statistics> for Utf8Statistics
impl PartialEq<Utf8Statistics> for Utf8Statistics
sourcefn eq(&self, other: &Utf8Statistics) -> bool
fn eq(&self, other: &Utf8Statistics) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Utf8Statistics) -> bool
fn ne(&self, other: &Utf8Statistics) -> bool
This method tests for !=
.
sourceimpl Statistics for Utf8Statistics
impl Statistics for Utf8Statistics
sourceimpl<'_> TryFrom<&'_ BinaryStatistics> for Utf8Statistics
impl<'_> TryFrom<&'_ BinaryStatistics> for Utf8Statistics
type Error = ArrowError
type Error = ArrowError
The type returned in the event of a conversion error.
sourcefn try_from(stats: &BinaryStatistics) -> Result<Utf8Statistics, ArrowError>
fn try_from(stats: &BinaryStatistics) -> Result<Utf8Statistics, ArrowError>
Performs the conversion.
impl StructuralPartialEq for Utf8Statistics
Auto Trait Implementations
impl RefUnwindSafe for Utf8Statistics
impl Send for Utf8Statistics
impl Sync for Utf8Statistics
impl Unpin for Utf8Statistics
impl UnwindSafe for Utf8Statistics
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more