#[non_exhaustive]
pub enum Shell {
    Bash,
    Carapace,
    Elvish,
    Fig,
    Fish,
    Nu,
    PowerShell,
    Zsh,
}
Expand description

A clap::ValueEnum for available shell completions.

Examples

Derive

use clap::{Parser, Subcommand};

#[derive(Parser)]
struct Cli {
    #[command(subcommand)]
    command: Commands,
}

#[derive(Subcommand)]
enum Commands {
    Completions {
        #[arg(value_enum)]
        shell: clap_complete_command::Shell,
    },
}

Builder

use clap::{Arg, Command};

fn build_cli() -> Command {
    Command::new(env!("CARGO_PKG_NAME"))
        .subcommand_required(true)
        .subcommand(
            Command::new("completions")
                .about("Generate shell completions")
                .arg(
                    Arg::new("shell")
                        .value_name("SHELL")
                        .help("The shell to generate the completions for")
                        .required(true)
                        .value_parser(
                            clap::builder::EnumValueParser::<clap_complete_command::Shell>::new(),
                        ),
                ),
        )
}

let matches = build_cli().get_matches();

match matches.subcommand() {
    Some(("completions", sub_matches)) => {
        if let Some(shell) = sub_matches.get_one::<clap_complete_command::Shell>("shell") {
            // ...
        }
    }
    _ => {
        unreachable!("Exhausted list of subcommands and `subcommand_required` prevents `None`")
    }
}

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Bash

Bourne Again SHell (bash)

§

Carapace

Available on crate feature carapace only.

Carapace spec

§

Elvish

Elvish shell

§

Fig

Available on crate feature fig only.

Fig

§

Fish

Friendly Interactive SHell (fish)

§

Nu

Available on crate feature nushell only.

NUshell (nu)

§

PowerShell

PowerShell

§

Zsh

Z SHell (zsh)

Implementations§

source§

impl Shell

source

pub fn generate(self, command: &mut Command, buffer: &mut dyn Write)

See clap_complete::generate().

The command’s bin name is used as the completion’s bin name. If the command’s bin name is not set, it will be set to the command’s name.

source

pub fn generate_to<S>( self, command: &mut Command, out_dir: S ) -> Result<PathBuf, Error>where S: Into<OsString>,

See clap_complete::generate_to().

The command’s bin name is used as the completion’s bin name. If the command’s bin name is not set, it will be set to the command’s name.

Trait Implementations§

source§

impl Clone for Shell

source§

fn clone(&self) -> Shell

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Shell

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Generator for Shell

source§

fn file_name(&self, name: &str) -> String

Returns the file name that is created when this generator is called during compile time. Read more
source§

fn generate(&self, cmd: &Command, buf: &mut dyn Write)

Generates output out of clap::Command. Read more
source§

impl ValueEnum for Shell

source§

fn value_variants<'a>() -> &'a [Self]

All possible argument values, in display order.
source§

fn to_possible_value(&self) -> Option<PossibleValue>

The canonical argument value. Read more
source§

fn from_str(input: &str, ignore_case: bool) -> Result<Self, String>

Parse an argument into Self.
source§

impl Copy for Shell

Auto Trait Implementations§

§

impl RefUnwindSafe for Shell

§

impl Send for Shell

§

impl Sync for Shell

§

impl Unpin for Shell

§

impl UnwindSafe for Shell

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.