[][src]Enum combu::parser::ParseError

pub enum ParseError {
    NoExistLong,
    NoExistShort(usize),
    InvalidShort(usizeString),
    InvalidLong(String),
    NotExist,
    NotParsed,
    Empty,
    None,
}

ParseError shows error in parsing

Variants

NoExistLong

Variant shows that corresponding long flag do not exist.

NoExistShort(usize)

Variant shows that corresponding short flag do not exist.

InvalidShort(usizeString)

Variant shows invalid short flag.

InvalidLong(String)

Variant shows invalid short flag.

NotExist

Shows not exist flag.

NotParsed

Shows not parsed.

Empty

Shows empty

None

Shows no error.

Trait Implementations

impl Clone for ParseError[src]

impl Debug for ParseError[src]

impl PartialEq<ParseError> for ParseError[src]

impl PartialOrd<ParseError> for ParseError[src]

impl StructuralPartialEq for ParseError[src]

Auto Trait Implementations

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.