pub enum PhashError {
Image(ImageError),
BadLength,
}Variants§
Image(ImageError)
BadLength
Trait Implementations§
Source§impl Debug for PhashError
impl Debug for PhashError
Source§impl Display for PhashError
impl Display for PhashError
Source§impl Error for PhashError
impl Error for PhashError
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<ImageError> for PhashError
impl From<ImageError> for PhashError
Source§fn from(source: ImageError) -> Self
fn from(source: ImageError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PhashError
impl !RefUnwindSafe for PhashError
impl Send for PhashError
impl Sync for PhashError
impl Unpin for PhashError
impl UnsafeUnpin for PhashError
impl !UnwindSafe for PhashError
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