pub struct NormalizedImage {
pub width: u32,
pub height: u32,
pub pixels: Vec<LinearPixel>,
pub measurement_mode: MeasurementMode,
pub orientation_applied: bool,
pub icc_status: String,
}Fields§
§width: u32§height: u32§pixels: Vec<LinearPixel>§measurement_mode: MeasurementMode§orientation_applied: bool§icc_status: StringTrait Implementations§
Source§impl Clone for NormalizedImage
impl Clone for NormalizedImage
Source§fn clone(&self) -> NormalizedImage
fn clone(&self) -> NormalizedImage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for NormalizedImage
impl RefUnwindSafe for NormalizedImage
impl Send for NormalizedImage
impl Sync for NormalizedImage
impl Unpin for NormalizedImage
impl UnsafeUnpin for NormalizedImage
impl UnwindSafe for NormalizedImage
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