pub(crate) enum XtazySubcommand {
Install {
version: Option<String>,
},
Update,
AutoUpdate {
action: Option<AutoUpdateAction>,
},
UseVersion {
version: String,
},
Active,
List,
Remove {
version: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for XtazySubcommand
impl Clone for XtazySubcommand
Source§fn clone(&self) -> XtazySubcommand
fn clone(&self) -> XtazySubcommand
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 XtazySubcommand
impl Debug for XtazySubcommand
Source§impl PartialEq for XtazySubcommand
impl PartialEq for XtazySubcommand
impl Eq for XtazySubcommand
impl StructuralPartialEq for XtazySubcommand
Auto Trait Implementations§
impl Freeze for XtazySubcommand
impl RefUnwindSafe for XtazySubcommand
impl Send for XtazySubcommand
impl Sync for XtazySubcommand
impl Unpin for XtazySubcommand
impl UnsafeUnpin for XtazySubcommand
impl UnwindSafe for XtazySubcommand
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