pub enum LinearRgbImageError {
ZeroDimension,
DimensionOverflow,
DataLengthMismatch {
expected: usize,
actual: usize,
},
}Expand description
Errors returned by LinearRgbImage::try_new.
Variants§
ZeroDimension
width or height was zero.
DimensionOverflow
width * height overflowed usize.
DataLengthMismatch
data.len() did not match width * height.
Trait Implementations§
Source§impl Clone for LinearRgbImageError
impl Clone for LinearRgbImageError
Source§fn clone(&self) -> LinearRgbImageError
fn clone(&self) -> LinearRgbImageError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LinearRgbImageError
Source§impl Debug for LinearRgbImageError
impl Debug for LinearRgbImageError
Source§impl Display for LinearRgbImageError
impl Display for LinearRgbImageError
impl Eq for LinearRgbImageError
Source§impl Error for LinearRgbImageError
impl Error for LinearRgbImageError
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 PartialEq for LinearRgbImageError
impl PartialEq for LinearRgbImageError
Source§fn eq(&self, other: &LinearRgbImageError) -> bool
fn eq(&self, other: &LinearRgbImageError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LinearRgbImageError
Auto Trait Implementations§
impl Freeze for LinearRgbImageError
impl RefUnwindSafe for LinearRgbImageError
impl Send for LinearRgbImageError
impl Sync for LinearRgbImageError
impl Unpin for LinearRgbImageError
impl UnsafeUnpin for LinearRgbImageError
impl UnwindSafe for LinearRgbImageError
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