Struct gif::reader::decoder::DecodingFormatError
source · pub struct DecodingFormatError {
underlying: Box<dyn Error + Send + Sync + 'static>,
}
Expand description
An error returned in the case of the image not being formatted properly.
Fields§
§underlying: Box<dyn Error + Send + Sync + 'static>
Trait Implementations§
source§impl Debug for DecodingFormatError
impl Debug for DecodingFormatError
source§impl Display for DecodingFormatError
impl Display for DecodingFormatError
source§impl Error for DecodingFormatError
impl Error for DecodingFormatError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<DecodingFormatError> for DecodingError
impl From<DecodingFormatError> for DecodingError
source§fn from(err: DecodingFormatError) -> Self
fn from(err: DecodingFormatError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DecodingFormatError
impl !RefUnwindSafe for DecodingFormatError
impl Send for DecodingFormatError
impl Sync for DecodingFormatError
impl Unpin for DecodingFormatError
impl !UnwindSafe for DecodingFormatError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more