pub enum OrderDirection {
Asc,
Desc,
}
Expand description
Specifies the sort direction for table queries
Used when ordering table results to determine ascending or descending order.
Variants§
Trait Implementations§
Source§impl Clone for OrderDirection
impl Clone for OrderDirection
Source§fn clone(&self) -> OrderDirection
fn clone(&self) -> OrderDirection
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 moreAuto Trait Implementations§
impl Freeze for OrderDirection
impl RefUnwindSafe for OrderDirection
impl Send for OrderDirection
impl Sync for OrderDirection
impl Unpin for OrderDirection
impl UnwindSafe for OrderDirection
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