Enum gong::ItemE[][src]

pub enum ItemE<'a> {
    LongMissingData(usize, &'a str),
    ShortMissingData(usizechar),
    AmbiguousLong(usize, &'a str),
}

Error-level items. See ItemClass documentation for details.

Variants

Long option match, but data argument missing [ERROR]

Short option match, but data argument missing [ERROR]

Ambiguous match with multiple long options. This only occurs when an exact match was not found, but multiple abbreviated possible matches were found. [ERROR]

Trait Implementations

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

Formats the value using the given formatter. Read more

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Copy for ItemE<'a>
[src]

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

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

This method tests for !=.

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

Auto Trait Implementations

impl<'a> Send for ItemE<'a>

impl<'a> Sync for ItemE<'a>