pub struct Flag<'a> {
    pub option_names: &'static [&'static str],
    pub argument_descriptions: &'static [&'static str],
    pub field: &'a mut dyn FlagParser,
    pub description: &'static str,
}

Fields

option_names: &'static [&'static str]argument_descriptions: &'static [&'static str]field: &'a mut dyn FlagParserdescription: &'static str

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.