Enum matrix_sdk::ImageError
source · [−]pub enum ImageError {
Proc(ImageError),
FormatNotSupported,
ThumbnailBiggerThanOriginal,
}Available on crate feature
image-proc only.Expand description
All possible errors that can happen during image processing.
Variants
Proc(ImageError)
Error processing the image data.
FormatNotSupported
The image format is not supported.
ThumbnailBiggerThanOriginal
The thumbnail size is bigger than the original image.
Trait Implementations
sourceimpl Debug for ImageError
impl Debug for ImageError
sourceimpl Display for ImageError
impl Display for ImageError
sourceimpl Error for ImageError
impl Error for ImageError
sourcefn 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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<ImageError> for Error
impl From<ImageError> for Error
sourcefn from(source: ImageError) -> Self
fn from(source: ImageError) -> Self
Converts to this type from the input type.
sourceimpl From<ImageError> for ImageError
impl From<ImageError> for ImageError
sourcefn from(source: ImageError) -> Self
fn from(source: ImageError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for ImageError
impl Send for ImageError
impl Sync for ImageError
impl Unpin for ImageError
impl !UnwindSafe for ImageError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more