pub enum OutputSort {
Type,
Name,
Status,
}Expand description
Sort order for output
Variants§
Type
Sort by type (Core, Theme, Plugin), then by name (default)
Name
Sort alphabetically by name only
Status
Sort by status, then by type, then by name
Trait Implementations§
Source§impl Clone for OutputSort
impl Clone for OutputSort
Source§fn clone(&self) -> OutputSort
fn clone(&self) -> OutputSort
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 OutputSort
impl Debug for OutputSort
Source§impl Default for OutputSort
impl Default for OutputSort
Source§fn default() -> OutputSort
fn default() -> OutputSort
Returns the “default value” for a type. Read more
Source§impl FromStr for OutputSort
impl FromStr for OutputSort
Source§impl PartialEq for OutputSort
impl PartialEq for OutputSort
impl Copy for OutputSort
impl Eq for OutputSort
impl StructuralPartialEq for OutputSort
Auto Trait Implementations§
impl Freeze for OutputSort
impl RefUnwindSafe for OutputSort
impl Send for OutputSort
impl Sync for OutputSort
impl Unpin for OutputSort
impl UnwindSafe for OutputSort
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