[][src]Enum menu::Parameter

pub enum Parameter<'a> {
    Mandatory {
        parameter_name: &'a str,
        help: Option<&'a str>,
    },
    Optional {
        parameter_name: &'a str,
        help: Option<&'a str>,
    },
    Named {
        parameter_name: &'a str,
        help: Option<&'a str>,
    },
    NamedValue {
        parameter_name: &'a str,
        argument_name: &'a str,
        help: Option<&'a str>,
    },
}

Describes a parameter to the command

Variants

Mandatory

A mandatory positional parameter

Fields of Mandatory

parameter_name: &'a str

A name for this mandatory positional parameter

help: Option<&'a str>

Help text

Optional

An optional positional parameter. Must come after the mandatory positional arguments.

Fields of Optional

parameter_name: &'a str

A name for this optional positional parameter

help: Option<&'a str>

Help text

Named

An optional named parameter with no argument (e.g. --verbose or --dry-run)

Fields of Named

parameter_name: &'a str

The bit that comes after the --

help: Option<&'a str>

Help text

NamedValue

A optional named parameter with argument (e.g. --mode=foo or --level=3)

Fields of NamedValue

parameter_name: &'a str

The bit that comes after the --

argument_name: &'a str

The bit that comes after the --name=, e.g. INT or FILE. It's mostly for help text.

help: Option<&'a str>

Help text

Trait Implementations

impl<'a> Debug for Parameter<'a>[src]

Auto Trait Implementations

impl<'a> Unpin for Parameter<'a>

impl<'a> Sync for Parameter<'a>

impl<'a> Send for Parameter<'a>

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]