pub enum SortOrder {
KeyAsc,
KeyDesc,
CreatedAsc,
CreatedDesc,
}Variants§
KeyAsc
Sort by key ascending
KeyDesc
Sort by key descending
CreatedAsc
Sort by creation time ascending
CreatedDesc
Sort by creation time descending
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SortOrder
impl RefUnwindSafe for SortOrder
impl Send for SortOrder
impl Sync for SortOrder
impl Unpin for SortOrder
impl UnwindSafe for SortOrder
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