Enum parquet2::indexes::BoundaryOrder
source · pub enum BoundaryOrder {
Unordered,
Ascending,
Descending,
}
Expand description
Enum to annotate whether lists of min/max elements inside ColumnIndex are ordered and if so, in which direction.
Variants§
Trait Implementations§
source§impl Clone for BoundaryOrder
impl Clone for BoundaryOrder
source§fn clone(&self) -> BoundaryOrder
fn clone(&self) -> BoundaryOrder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BoundaryOrder
impl Debug for BoundaryOrder
source§impl Default for BoundaryOrder
impl Default for BoundaryOrder
source§impl From<BoundaryOrder> for ParquetBoundaryOrder
impl From<BoundaryOrder> for ParquetBoundaryOrder
source§fn from(encoding: BoundaryOrder) -> Self
fn from(encoding: BoundaryOrder) -> Self
Converts to this type from the input type.
source§impl Hash for BoundaryOrder
impl Hash for BoundaryOrder
source§impl PartialEq<BoundaryOrder> for BoundaryOrder
impl PartialEq<BoundaryOrder> for BoundaryOrder
source§fn eq(&self, other: &BoundaryOrder) -> bool
fn eq(&self, other: &BoundaryOrder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.