pub enum ImageProcessingError {
Read {
path: PathBuf,
source: Error,
},
Decode {
path: PathBuf,
source: ImageError,
},
Encode {
format: ImageFormat,
source: ImageError,
},
}Variants§
Implementations§
Source§impl ImageProcessingError
impl ImageProcessingError
pub fn is_invalid_image(&self) -> bool
Trait Implementations§
Source§impl Debug for ImageProcessingError
impl Debug for ImageProcessingError
Source§impl Display for ImageProcessingError
impl Display for ImageProcessingError
Source§impl Error for ImageProcessingError
impl Error for ImageProcessingError
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()
Auto Trait Implementations§
impl !RefUnwindSafe for ImageProcessingError
impl !UnwindSafe for ImageProcessingError
impl Freeze for ImageProcessingError
impl Send for ImageProcessingError
impl Sync for ImageProcessingError
impl Unpin for ImageProcessingError
impl UnsafeUnpin for ImageProcessingError
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