Enum jpeg_decoder::Error [] [src]

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

Variants

Format
Unsupported
Io
Internal

Trait Implementations

impl Display for Error

fn fmt(&self, f: &mut Formatter) -> Result

impl StdError for Error

fn description(&self) -> &str

fn cause(&self) -> Option<&StdError>

impl From<IoError> for Error

fn from(err: IoError) -> Error

impl From<RecvError> for Error

fn from(err: RecvError) -> Error

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

fn from(err: SendError<T>) -> Error

Derived Implementations

impl Debug for Error

fn fmt(&self, __arg_0: &mut Formatter) -> Result