pub enum ShouldSort {
Sort,
NoSort,
}Expand description
Controls whether list results are sorted.
Variants§
Trait Implementations§
Source§impl Clone for ShouldSort
impl Clone for ShouldSort
Source§fn clone(&self) -> ShouldSort
fn clone(&self) -> ShouldSort
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ShouldSort
impl Debug for ShouldSort
Source§impl Default for ShouldSort
impl Default for ShouldSort
Source§fn default() -> ShouldSort
fn default() -> ShouldSort
Returns the “default value” for a type. Read more
Source§impl From<bool> for ShouldSort
impl From<bool> for ShouldSort
Source§impl Into<bool> for ShouldSort
impl Into<bool> for ShouldSort
Source§impl PartialEq for ShouldSort
impl PartialEq for ShouldSort
impl StructuralPartialEq for ShouldSort
Auto Trait Implementations§
impl Freeze for ShouldSort
impl RefUnwindSafe for ShouldSort
impl Send for ShouldSort
impl Sync for ShouldSort
impl Unpin for ShouldSort
impl UnsafeUnpin for ShouldSort
impl UnwindSafe for ShouldSort
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