Enum yeelib_rs::err::YeeError[][src]

pub enum YeeError {
    ParseFieldFailed {
        field_name: &'static str,
        source: Option<ParseIntError>,
    },
    FieldNotFound {
        field_name: &'static str,
    },
    IoError {
        source: Error,
    },
    MethodNotSupported {
        method_name: &'static str,
    },
    InvalidValue {
        field_name: &'static str,
        value: String,
    },
    ChangeFailed {
        message: String,
    },
}

Variants

ParseFieldFailed

Fields of ParseFieldFailed

field_name: &'static strsource: Option<ParseIntError>
FieldNotFound

Fields of FieldNotFound

field_name: &'static str
IoError

Fields of IoError

source: Error
MethodNotSupported

Fields of MethodNotSupported

method_name: &'static str
InvalidValue

Fields of InvalidValue

field_name: &'static strvalue: String
ChangeFailed

Fields of ChangeFailed

message: String

Trait Implementations

impl Debug for YeeError[src]

impl Display for YeeError[src]

impl Error for YeeError[src]

impl From<Error> for YeeError[src]

Auto Trait Implementations

impl !RefUnwindSafe for YeeError

impl Send for YeeError

impl Sync for YeeError

impl Unpin for YeeError

impl !UnwindSafe for YeeError

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