pub enum BoundaryOrder {
UNORDERED = 0,
ASCENDING = 1,
DESCENDING = 2,
}Expand description
Enum to annotate whether lists of min/max elements inside ColumnIndex are ordered and if so, in which direction.
Variants§
Implementations§
Source§impl BoundaryOrder
impl BoundaryOrder
Sourcepub const MAX_DISCRIMINANT: i32 = 2i32
pub const MAX_DISCRIMINANT: i32 = 2i32
Returns the largest discriminant value defined for this enum.
Trait Implementations§
Source§impl Clone for BoundaryOrder
impl Clone for BoundaryOrder
Source§fn clone(&self) -> BoundaryOrder
fn clone(&self) -> BoundaryOrder
Returns a duplicate 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 Display for BoundaryOrder
impl Display for BoundaryOrder
Source§impl Hash for BoundaryOrder
impl Hash for BoundaryOrder
Source§impl Ord for BoundaryOrder
impl Ord for BoundaryOrder
Source§fn cmp(&self, other: &BoundaryOrder) -> Ordering
fn cmp(&self, other: &BoundaryOrder) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BoundaryOrder
impl PartialEq for BoundaryOrder
Source§impl PartialOrd for BoundaryOrder
impl PartialOrd 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