Enum error_chain::example_generated::ErrorKind[][src]

pub enum ErrorKind {
    Msg(String),
    Inner(ErrorKind),
    Io(Error),
    Custom,
    // some variants omitted
}

The kind of an error.

Variants

A convenient variant for String.

Link to another ErrorChain.

Link to a std::io::Error type.

A custom error kind.

Methods

impl ErrorKind
[src]

A string describing the error kind.

Trait Implementations

impl From<ErrorKind> for Error
[src]

Performs the conversion.

impl Debug for ErrorKind
[src]

Formats the value using the given formatter. Read more

impl Display for ErrorKind
[src]

Formats the value using the given formatter. Read more

impl From<ErrorKind> for ErrorKind
[src]

Link to another ErrorChain.

Performs the conversion.

impl<'a> From<&'a str> for ErrorKind
[src]

Performs the conversion.

impl From<String> for ErrorKind
[src]

Performs the conversion.

impl From<Error> for ErrorKind
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for ErrorKind

impl Sync for ErrorKind