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 BoundaryOrder
impl From<BoundaryOrder> for BoundaryOrder
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 for BoundaryOrder
impl PartialEq 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 ==
.source§impl TryFrom<BoundaryOrder> for BoundaryOrder
impl TryFrom<BoundaryOrder> for BoundaryOrder
impl Copy for BoundaryOrder
impl Eq for BoundaryOrder
impl StructuralPartialEq for BoundaryOrder
Auto Trait Implementations§
impl Freeze for BoundaryOrder
impl RefUnwindSafe for BoundaryOrder
impl Send for BoundaryOrder
impl Sync for BoundaryOrder
impl Unpin for BoundaryOrder
impl UnwindSafe for BoundaryOrder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more