pub struct CompressedDataPage { /* private fields */ }
Available on crate feature io_parquet only.
Expand description

A CompressedDataPage is compressed, encoded representation of a Parquet data page. It holds actual data and thus cloning it is expensive.

Implementations

Returns a new CompressedDataPage.

The compression of the data in this page. Note that what is compressed in a page depends on its version: in V1, the whole data ([repetition levels][definition levels][values]) is compressed; in V2 only the values are compressed.

the rows to be selected by this page. When None, all rows are to be considered.

Decodes the raw statistics into a statistics

Trait Implementations

Formats the value using the given formatter. Read more

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.