pub struct PixelDifference {
pub x: u32,
pub y: u32,
pub lhs: [u8; 4],
pub rhs: [u8; 4],
pub difference: u32,
}Fields§
§x: u32§y: u32§lhs: [u8; 4]§rhs: [u8; 4]§difference: u32Trait Implementations§
Source§impl Clone for PixelDifference
impl Clone for PixelDifference
Source§fn clone(&self) -> PixelDifference
fn clone(&self) -> PixelDifference
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 PixelDifference
impl Debug for PixelDifference
Source§impl PartialEq for PixelDifference
impl PartialEq for PixelDifference
impl Eq for PixelDifference
impl StructuralPartialEq for PixelDifference
Auto Trait Implementations§
impl Freeze for PixelDifference
impl RefUnwindSafe for PixelDifference
impl Send for PixelDifference
impl Sync for PixelDifference
impl Unpin for PixelDifference
impl UnsafeUnpin for PixelDifference
impl UnwindSafe for PixelDifference
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