pub struct ImageDifferenceStats {
pub differing_pixels: u32,
pub max_difference: u32,
pub first_difference: Option<PixelDifference>,
}Fields§
§differing_pixels: u32§max_difference: u32§first_difference: Option<PixelDifference>Trait Implementations§
Source§impl Clone for ImageDifferenceStats
impl Clone for ImageDifferenceStats
Source§fn clone(&self) -> ImageDifferenceStats
fn clone(&self) -> ImageDifferenceStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ImageDifferenceStats
impl Debug for ImageDifferenceStats
Source§impl Default for ImageDifferenceStats
impl Default for ImageDifferenceStats
Source§fn default() -> ImageDifferenceStats
fn default() -> ImageDifferenceStats
Returns the “default value” for a type. Read more
Source§impl PartialEq for ImageDifferenceStats
impl PartialEq for ImageDifferenceStats
impl Eq for ImageDifferenceStats
impl StructuralPartialEq for ImageDifferenceStats
Auto Trait Implementations§
impl Freeze for ImageDifferenceStats
impl RefUnwindSafe for ImageDifferenceStats
impl Send for ImageDifferenceStats
impl Sync for ImageDifferenceStats
impl Unpin for ImageDifferenceStats
impl UnsafeUnpin for ImageDifferenceStats
impl UnwindSafe for ImageDifferenceStats
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