Enum argle::ConvertError[][src]

pub enum ConvertError<O, T, E> {
    Other(O),
    ConversionFailed {
        name: String,
        error: E,
        value: T,
    },
}

Variants

Fields of ConversionFailed

Trait Implementations

impl<O: Debug, T: Debug, E: Debug> Debug for ConvertError<O, T, E>
[src]

Formats the value using the given formatter. Read more

impl<O: Debug + Display, T: Debug + Display, E: Debug + Display> Display for ConvertError<O, T, E>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<O, T, E> Send for ConvertError<O, T, E> where
    E: Send,
    O: Send,
    T: Send

impl<O, T, E> Sync for ConvertError<O, T, E> where
    E: Sync,
    O: Sync,
    T: Sync