pub enum Monotonicity {
Unknown,
Asc,
Desc,
NotArray,
}Expand description
Tracks ordering properties of array-like values through the pipeline.
Variants§
Unknown
Order unknown.
Asc
Ascending by natural comparator.
Desc
Descending by natural comparator.
NotArray
Not an ordered collection.
Implementations§
Source§impl Monotonicity
impl Monotonicity
pub fn after(self, op: &Opcode) -> Monotonicity
Trait Implementations§
Source§impl Clone for Monotonicity
impl Clone for Monotonicity
Source§fn clone(&self) -> Monotonicity
fn clone(&self) -> Monotonicity
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 Monotonicity
impl Debug for Monotonicity
Source§impl PartialEq for Monotonicity
impl PartialEq for Monotonicity
impl Copy for Monotonicity
impl Eq for Monotonicity
impl StructuralPartialEq for Monotonicity
Auto Trait Implementations§
impl Freeze for Monotonicity
impl RefUnwindSafe for Monotonicity
impl Send for Monotonicity
impl Sync for Monotonicity
impl Unpin for Monotonicity
impl UnsafeUnpin for Monotonicity
impl UnwindSafe for Monotonicity
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.