pub struct ProcessedImage {
pub data: Vec<u8>,
pub width: usize,
pub height: usize,
pub is_color: bool,
}Fields§
§data: Vec<u8>§width: usize§height: usize§is_color: boolAuto Trait Implementations§
impl Freeze for ProcessedImage
impl RefUnwindSafe for ProcessedImage
impl Send for ProcessedImage
impl Sync for ProcessedImage
impl Unpin for ProcessedImage
impl UnwindSafe for ProcessedImage
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