pub enum ProjectSort {
Name,
CreatedAt,
ModifiedAt,
}Expand description
Sort options supported by the CLI.
Variants§
Name
Sort by project name (case insensitive).
CreatedAt
Sort by creation timestamp.
ModifiedAt
Sort by modification timestamp.
Trait Implementations§
Source§impl Clone for ProjectSort
impl Clone for ProjectSort
Source§fn clone(&self) -> ProjectSort
fn clone(&self) -> ProjectSort
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ProjectSort
Source§impl Debug for ProjectSort
impl Debug for ProjectSort
impl Eq for ProjectSort
Source§impl PartialEq for ProjectSort
impl PartialEq for ProjectSort
impl StructuralPartialEq for ProjectSort
Auto Trait Implementations§
impl Freeze for ProjectSort
impl RefUnwindSafe for ProjectSort
impl Send for ProjectSort
impl Sync for ProjectSort
impl Unpin for ProjectSort
impl UnsafeUnpin for ProjectSort
impl UnwindSafe for ProjectSort
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