pub enum ImageError {
UnknownFormat,
InvalidData(String),
ResizeError(String),
IoError(Error),
ProcessingError(ImageError),
}Expand description
Errors that can occur during image operations.
Variants§
UnknownFormat
Unknown image format
InvalidData(String)
Invalid image data
ResizeError(String)
Resize error
IoError(Error)
IO error
ProcessingError(ImageError)
Image processing error
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
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§impl From<ImageError> for ImageError
impl From<ImageError> for ImageError
Source§fn from(source: ImageError) -> Self
fn from(source: ImageError) -> Self
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