#[repr(C)]pub enum SortFlags {
SORT_EVERY_ROW = 0,
SORT_EVERY_COLUMN = 1,
SORT_DESCENDING = 16,
}
Variants§
SORT_EVERY_ROW = 0
each matrix row is sorted independently
SORT_EVERY_COLUMN = 1
each matrix column is sorted independently; this flag and the previous one are mutually exclusive.
SORT_DESCENDING = 16
each matrix row is sorted in the descending order; this flag and the previous one are also mutually exclusive.
Trait Implementations§
source§impl PartialEq for SortFlags
impl PartialEq for SortFlags
impl Copy for SortFlags
impl Eq for SortFlags
impl StructuralEq for SortFlags
impl StructuralPartialEq for SortFlags
Auto Trait Implementations§
impl RefUnwindSafe for SortFlags
impl Send for SortFlags
impl Sync for SortFlags
impl Unpin for SortFlags
impl UnwindSafe for SortFlags
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