pub enum MappingError {
ImageError(ImageError),
DifferentDimensions,
UnsupportedCombinationOfImageTypes,
}Variants§
Trait Implementations§
Source§impl Clone for MappingError
impl Clone for MappingError
Source§fn clone(&self) -> MappingError
fn clone(&self) -> MappingError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MappingError
impl Debug for MappingError
Source§impl Display for MappingError
impl Display for MappingError
Source§impl Error for MappingError
impl Error for MappingError
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<DifferentDimensionsError> for MappingError
impl From<DifferentDimensionsError> for MappingError
Source§fn from(_: DifferentDimensionsError) -> Self
fn from(_: DifferentDimensionsError) -> Self
Converts to this type from the input type.
Source§impl From<ImageError> for MappingError
impl From<ImageError> for MappingError
Source§fn from(source: ImageError) -> Self
fn from(source: ImageError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MappingError
impl PartialEq for MappingError
impl Copy for MappingError
impl Eq for MappingError
impl StructuralPartialEq for MappingError
Auto Trait Implementations§
impl Freeze for MappingError
impl RefUnwindSafe for MappingError
impl Send for MappingError
impl Sync for MappingError
impl Unpin for MappingError
impl UnwindSafe for MappingError
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