Enum gif::DecodingError
[−]
[src]
pub enum DecodingError {
Format(&'static str),
Internal(&'static str),
Io(Error),
}Decoding error.
Variants
Format(&'static str)Returned if the image is found to be malformed.
Internal(&'static str)Internal (logic) error.
Io(Error)Wraps std::io::Error.