[][src]Enum simon::VecConvertStringError

pub enum VecConvertStringError<A, E> {
    Arg(A),
    FailedToConvert {
        name: String,
        index: usize,
        arg_string: String,
        error: E,
    },
}

Variants

Arg(A)
FailedToConvert

Fields of FailedToConvert

name: Stringindex: usizearg_string: Stringerror: E

Trait Implementations

impl<A, E> Display for VecConvertStringError<A, E> where
    A: Display,
    E: Display
[src]

impl<A: Debug, E: Debug> Debug for VecConvertStringError<A, E>[src]

Auto Trait Implementations

impl<A, E> Send for VecConvertStringError<A, E> where
    A: Send,
    E: Send

impl<A, E> Sync for VecConvertStringError<A, E> where
    A: Sync,
    E: Sync

impl<A, E> Unpin for VecConvertStringError<A, E> where
    A: Unpin,
    E: Unpin

impl<A, E> UnwindSafe for VecConvertStringError<A, E> where
    A: UnwindSafe,
    E: UnwindSafe

impl<A, E> RefUnwindSafe for VecConvertStringError<A, E> where
    A: RefUnwindSafe,
    E: RefUnwindSafe

Blanket Implementations

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

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

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

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