pub enum Shell {
Bash,
Zsh,
Fish,
Elvish,
PowerShell,
}Expand description
Re-export of clap_complete::Shell as a ValueEnum so the runtime completion <shell> subcommand can use it directly without a custom
parser. Kept in lockstep with clap_complete::Shell variants.
Variants§
Trait Implementations§
impl Copy for Shell
Auto Trait Implementations§
impl Freeze for Shell
impl RefUnwindSafe for Shell
impl Send for Shell
impl Sync for Shell
impl Unpin for Shell
impl UnsafeUnpin for Shell
impl UnwindSafe for Shell
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