pub enum BitmapError {
InvalidBitmapData,
UnsupportedBitsPerPixel,
BitmapIOError(Error),
}Variants§
Trait Implementations§
Source§impl Debug for BitmapError
impl Debug for BitmapError
Source§impl From<Error> for BitmapError
impl From<Error> for BitmapError
Source§fn from(err: Error) -> BitmapError
fn from(err: Error) -> BitmapError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BitmapError
impl !RefUnwindSafe for BitmapError
impl Send for BitmapError
impl Sync for BitmapError
impl Unpin for BitmapError
impl !UnwindSafe for BitmapError
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