pub enum CompletionShell {
Bash,
Fish,
Zsh,
}Expand description
Shell types for completion generation.
Variants§
Trait Implementations§
Source§impl Clone for CompletionShell
impl Clone for CompletionShell
Source§fn clone(&self) -> CompletionShell
fn clone(&self) -> CompletionShell
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 CompletionShell
impl Debug for CompletionShell
Source§impl From<CompletionShell> for Shell
impl From<CompletionShell> for Shell
Source§fn from(shell: CompletionShell) -> Self
fn from(shell: CompletionShell) -> Self
Converts to this type from the input type.
Source§impl ValueEnum for CompletionShell
impl ValueEnum for CompletionShell
impl Copy for CompletionShell
Auto Trait Implementations§
impl Freeze for CompletionShell
impl RefUnwindSafe for CompletionShell
impl Send for CompletionShell
impl Sync for CompletionShell
impl Unpin for CompletionShell
impl UnwindSafe for CompletionShell
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