Enum jpeg_decoder::Error [] [src]

pub enum Error {
    Format(String),
    Unsupported(UnsupportedFeature),
    Io(IoError),
    Internal(Box<StdError>),
}

Variants

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Display for Error
[src]

Formats the value using the given formatter.

impl StdError for Error
[src]

A short description of the error. Read more

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

impl From<IoError> for Error
[src]

Performs the conversion.

impl From<RecvError> for Error
[src]

Performs the conversion.

impl<T: Any + Send> From<SendError<T>> for Error
[src]

Performs the conversion.