#[repr(u32)]pub enum SortOrder {
Unsorted = 0,
Ascending = 1,
Descending = 2,
}
Expand description
This enum represents the different values of the sort-order
property.
It’s used to sort a StandardTableView
by a column.
Variants§
Unsorted = 0
The column is unsorted.
Ascending = 1
The column is sorted in ascending order.
Descending = 2
The column is sorted in descending order.
Trait Implementations§
impl Copy for SortOrder
impl Eq for SortOrder
impl StructuralPartialEq for SortOrder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Converts the given value to a
SharedString
.