Enum gif::DecodingError[][src]

pub enum DecodingError {
    Format(&'static str),
    Internal(&'static str),
    Io(Error),
}

Decoding error.

Variants

Returned if the image is found to be malformed.

Internal (logic) error.

Wraps std::io::Error.

Trait Implementations

impl Debug for DecodingError
[src]

Formats the value using the given formatter. Read more

impl Display for DecodingError
[src]

Formats the value using the given formatter. Read more

impl Error for DecodingError
[src]

This method is soft-deprecated. Read more

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

impl From<Error> for DecodingError
[src]

Performs the conversion.

Auto Trait Implementations