pub enum Direction {
Ascending,
Descending,
}Expand description
Sort direction. Does not have a default – implied by the field via SortBy.
Actual sorting is done by PartialOrdBy.
Variants§
Ascending
Ascending sort. A-Z, 0-9, little to big, etc.
Descending
Descending sort. Z-A, opposite of ascending.
Implementations§
Trait Implementations§
impl Copy for Direction
impl StructuralPartialEq for Direction
Auto Trait Implementations§
impl Freeze for Direction
impl RefUnwindSafe for Direction
impl Send for Direction
impl Sync for Direction
impl Unpin for Direction
impl UnwindSafe for Direction
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