pub struct ColumnPageStatistics {
    pub min: Box<dyn Array>,
    pub max: Box<dyn Array>,
    pub null_count: UInt64Array,
}
Available on crate feature io_parquet only.
Expand description

ColumnPageStatistics contains the minimum, maximum, and null_count of each page of a parquet column, as an Array. This struct has the following invariants:

  • min, max and null_count have the same length (equal to the number of pages in the column)
  • min, max and null_count are guaranteed to be non-null
  • min and max have the same logical type

Fields§

§min: Box<dyn Array>

The minimum values in the pages

§max: Box<dyn Array>

The maximum values in the pages

§null_count: UInt64Array

The number of null values in the pages.

Trait Implementations§

Formats the value using the given formatter. Read more
Converts to this type from the input type.
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.