pub enum CliActions {
Add(Result<PathBuf, String>),
Chdir(String),
InstallWrapper,
Remove(Option<String>),
Search,
UnknownCommand,
}Variants§
Add(Result<PathBuf, String>)
Chdir(String)
InstallWrapper
Remove(Option<String>)
Search
UnknownCommand
Auto Trait Implementations§
impl Freeze for CliActions
impl RefUnwindSafe for CliActions
impl Send for CliActions
impl Sync for CliActions
impl Unpin for CliActions
impl UnwindSafe for CliActions
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