Enum audrey::read::ReadError [] [src]

pub enum ReadError {
    Io(Error),
    Reader(FormatError),
    UnsupportedFormat,
}

Errors that might be returned from the Reader::new function.

Variants

Trait Implementations

impl Debug for ReadError
[src]

Formats the value using the given formatter.

impl<T> From<T> for ReadError where
    T: Into<FormatError>, 
[src]

Performs the conversion.

impl From<Error> for ReadError
[src]

Performs the conversion.

impl Error for ReadError
[src]

A short description of the error. Read more

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

impl Display for ReadError
[src]

Formats the value using the given formatter. Read more