pub enum ImageErrorType {
BitsError,
BadMagic,
BadByteOrder,
ParseError,
}
Variants§
Trait Implementations§
Source§impl Clone for ImageErrorType
impl Clone for ImageErrorType
Source§fn clone(&self) -> ImageErrorType
fn clone(&self) -> ImageErrorType
Returns a copy 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 ImageErrorType
impl Debug for ImageErrorType
Source§impl<T> From<ImageErrorType> for Result<T, ImageError>
impl<T> From<ImageErrorType> for Result<T, ImageError>
Source§fn from(ty: ImageErrorType) -> Self
fn from(ty: ImageErrorType) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ImageErrorType
impl RefUnwindSafe for ImageErrorType
impl Send for ImageErrorType
impl Sync for ImageErrorType
impl Unpin for ImageErrorType
impl UnwindSafe for ImageErrorType
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