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

Arrow-deserialized ColumnIndex containing the minimum and maximum value of every page from the column.

Invariants

The minimum and maximum are guaranteed to 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

Implementations

The DataType of the column index.

Trait Implementations

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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.