pub struct ImageDiff {
pub image1_size: [u32; 2],
pub image2_size: [u32; 2],
pub diff: Vec<PixelDiff>,
}
Expand description
Returned by the BMP::diff()
method.
Fields§
§image1_size: [u32; 2]
§image2_size: [u32; 2]
§diff: Vec<PixelDiff>
Implementations§
Trait Implementations§
Source§impl IntoIterator for ImageDiff
impl IntoIterator for ImageDiff
Auto Trait Implementations§
impl Freeze for ImageDiff
impl RefUnwindSafe for ImageDiff
impl Send for ImageDiff
impl Sync for ImageDiff
impl Unpin for ImageDiff
impl UnwindSafe for ImageDiff
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