pub struct Image {
pub data: Vec<u8>,
pub format: ImageFormat,
}Expand description
An image read from the card, with its format already identified.
Fields§
§data: Vec<u8>Encoded image data, exactly as the card stores it.
format: ImageFormatWhich encoding that is.
Implementations§
Trait Implementations§
impl Eq for Image
impl StructuralPartialEq for Image
Auto Trait Implementations§
impl Freeze for Image
impl RefUnwindSafe for Image
impl Send for Image
impl Sync for Image
impl Unpin for Image
impl UnsafeUnpin for Image
impl UnwindSafe for Image
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