Enum kankyo::Error [] [src]

pub enum Error {
    Io(IoError),
}

Standard and only Result enum for the crate. This is the Result's Err type for all public functions.

Variants

An error from the std::io module occurred.

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl From<IoError> for Error
[src]

[src]

Performs the conversion.

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl StdError for Error
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more