pub enum ImageError {
ZeroDimension {
width: usize,
height: usize,
},
InvalidKernelSize {
kw: usize,
kh: usize,
},
BufferLengthMismatch {
expected: usize,
got: usize,
width: usize,
height: usize,
},
InvalidThresholds {
low: f32,
high: f32,
},
DimensionMismatch {
expected: usize,
got: usize,
},
InvalidChannel {
channel: usize,
max: usize,
},
}Expand description
Errors from image operations.
Variants§
ZeroDimension
Image dimensions are zero.
InvalidKernelSize
Kernel dimensions are zero or even.
BufferLengthMismatch
Buffer length mismatch.
Fields
InvalidThresholds
Invalid threshold values.
DimensionMismatch
Data length doesn’t match dimensions.
InvalidChannel
Invalid channel index.
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()
Auto Trait Implementations§
impl Freeze for ImageError
impl RefUnwindSafe for ImageError
impl Send for ImageError
impl Sync for ImageError
impl Unpin for ImageError
impl UnsafeUnpin 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