Enum convenience::FileError []

pub enum FileError {
    Io(Error),
    Utf8(FromUtf8Error),
}

Variants

Trait Implementations

impl Debug for FileError
[src]

Formats the value using the given formatter.

impl Display for FileError

Formats the value using the given formatter. Read more

impl Error for FileError

A short description of the error. Read more

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

impl From<Error> for FileError

Performs the conversion.

impl From<FromUtf8Error> for FileError

Performs the conversion.