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§
Auto 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