pub enum IndexOrder {
Ascending,
Descending,
Default,
}Expand description
Index column sort order.
Variants§
Trait Implementations§
Source§impl Clone for IndexOrder
impl Clone for IndexOrder
Source§fn clone(&self) -> IndexOrder
fn clone(&self) -> IndexOrder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IndexOrder
impl Debug for IndexOrder
Source§impl Default for IndexOrder
impl Default for IndexOrder
Source§fn default() -> IndexOrder
fn default() -> IndexOrder
Returns the “default value” for a type. Read more
Source§impl Hash for IndexOrder
impl Hash for IndexOrder
Source§impl Ord for IndexOrder
impl Ord for IndexOrder
Source§fn cmp(&self, other: &IndexOrder) -> Ordering
fn cmp(&self, other: &IndexOrder) -> Ordering
1.21.0 (const: unstable) · 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 IndexOrder
impl PartialEq for IndexOrder
Source§fn eq(&self, other: &IndexOrder) -> bool
fn eq(&self, other: &IndexOrder) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for IndexOrder
impl PartialOrd for IndexOrder
impl Copy for IndexOrder
impl Eq for IndexOrder
impl StructuralPartialEq for IndexOrder
Auto Trait Implementations§
impl Freeze for IndexOrder
impl RefUnwindSafe for IndexOrder
impl Send for IndexOrder
impl Sync for IndexOrder
impl Unpin for IndexOrder
impl UnsafeUnpin for IndexOrder
impl UnwindSafe for IndexOrder
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