pub enum ImageError {
NotSupported,
CorruptedImage,
IoError(Error),
}
Expand description
An Error type used in failure cases.
Variants§
NotSupported
Used when the given data is not a supported format.
CorruptedImage
Used when the image has an invalid format.
IoError(Error)
Used when an IoError occurs when trying to read the given data.
Trait Implementations§
source§impl Debug for ImageError
impl Debug for ImageError
source§impl Display for ImageError
impl Display for ImageError
source§impl Error for ImageError
impl Error for ImageError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<Error> for ImageError
impl From<Error> for ImageError
source§fn from(err: Error) -> ImageError
fn from(err: Error) -> ImageError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ImageError
impl !RefUnwindSafe for ImageError
impl Send for ImageError
impl Sync for ImageError
impl Unpin for ImageError
impl !UnwindSafe for ImageError
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