[][src]Enum parquet::basic::ColumnOrder

pub enum ColumnOrder {
    TYPE_DEFINED_ORDER(SortOrder),
    UNDEFINED,
}

Column order that specifies what method was used to aggregate min/max values for statistics.

If column order is undefined, then it is the legacy behaviour and all values should be compared as signed values/bytes.

Variants

Column uses the order defined by its logical or physical type (if there is no logical type), parquet-format 2.4.0+.

Undefined column order, means legacy behaviour before parquet-format 2.4.0. Sort order is always SIGNED.

Methods

impl ColumnOrder
[src]

Returns sort order for a physical/logical type.

Returns sort order associated with this column order.

Trait Implementations

impl PartialEq<ColumnOrder> for ColumnOrder
[src]

impl Clone for ColumnOrder
[src]

Performs copy-assignment from source. Read more

impl Copy for ColumnOrder
[src]

impl Display for ColumnOrder
[src]

impl Debug for ColumnOrder
[src]

Auto Trait Implementations

impl Send for ColumnOrder

impl Sync for ColumnOrder

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T> From for T
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<E> SpecializationError for E
[src]

impl<T> Erased for T
[src]

impl<T> Send for T where
    T: ?Sized
[src]

impl<T> Sync for T where
    T: ?Sized
[src]

impl<T> Erased for T

impl<T, U> TryInto for T where
    U: TryFrom<T>,