pub enum TableOrder {
Unordered = 0,
Ascending = 1,
Descending = 2,
}Variants§
Implementations§
Source§impl TableOrder
impl TableOrder
Trait Implementations§
Source§impl Clone for TableOrder
impl Clone for TableOrder
Source§fn clone(&self) -> TableOrder
fn clone(&self) -> TableOrder
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 moreimpl Copy for TableOrder
Source§impl Default for TableOrder
impl Default for TableOrder
Source§impl PartialEq for TableOrder
impl PartialEq for TableOrder
Source§fn eq(&self, other: &TableOrder) -> bool
fn eq(&self, other: &TableOrder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TableOrder
Auto Trait Implementations§
impl Freeze for TableOrder
impl RefUnwindSafe for TableOrder
impl Send for TableOrder
impl Sync for TableOrder
impl Unpin for TableOrder
impl UnsafeUnpin for TableOrder
impl UnwindSafe for TableOrder
Blanket Implementations§
impl<T> Any for Twhere
T: Any,
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