[][src]Enum gong::analysis::ItemClass

pub enum ItemClass<'a> {
    Ok(Item<'a>),
    Warn(ItemW<'a>),
    Err(ItemE<'a>),
}

The possible classes of items identified and extracted from command line arguments.

This breaks down items to three classes - okay/warn/error - with each variant holding an Item, ItemW or ItemE variant which more specifically represents what was found.

We use a class wrapper rather than grouping items into separate vectors because a single vector preserves order more simply. We break up item variants into groups for the advantages in matching.

All sub-variants hold a usize value to be used for indicating the index of the argument at which the item was found.

Most sub-variants also hold additional data. Long option sub-variants hold a string slice reference to the matched option. Short option sub-variants hold the char matched. Options with data arguments additionally hold a string slice reference to the data string matched, and in some cases also a DataLocation variant. The NonOption sub-variant holds a string slice reference to the matched string.

Variants

Ok(Item<'a>)

Non-problematic item

Warn(ItemW<'a>)

Warn-level item

Err(ItemE<'a>)

Error-level item

Trait Implementations

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

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

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

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

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

impl<'a> StructuralEq for ItemClass<'a>[src]

impl<'a> StructuralPartialEq for ItemClass<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for ItemClass<'a>[src]

impl<'a> Send for ItemClass<'a>[src]

impl<'a> Sync for ItemClass<'a>[src]

impl<'a> Unpin for ItemClass<'a>[src]

impl<'a> UnwindSafe for ItemClass<'a>[src]

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> 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.