Enum argonaut::OptName [] [src]

pub enum OptName<'a> {
    Short(char),
    Long(&'a str),
    ShortAndLong(char, &'a str),
}

The name of an optional flag.

Variants

Short(char)Long(&'a str)ShortAndLong(char, &'a str)

Methods

impl<'a> OptName<'a>
[src]

fn is_long(&self, other: &str) -> bool

Returns whether this flag is the given long option (ex "help" for --help).

fn is_short(&self, other: char) -> bool

Returns whether this flag is the given short option (ex 'h' for -h).

Trait Implementations

impl<'a> Hash for OptName<'a>
[src]

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

Feeds this value into the state given, updating the hasher as necessary.

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.

impl<'a> Eq for OptName<'a>
[src]

impl<'a> PartialEq for OptName<'a>
[src]

fn eq(&self, __arg_0: &OptName<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &OptName<'a>) -> bool

This method tests for !=.

impl<'a> Clone for OptName<'a>
[src]

fn clone(&self) -> OptName<'a>

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

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

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl<'a> Display for OptName<'a>
[src]

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

Formats the value using the given formatter.