pub struct PixelComparison {
pub pixel1: PixelInfo,
pub pixel2: PixelInfo,
pub color_distance: f32,
pub is_similar: bool,
}Fields§
§pixel1: PixelInfo§pixel2: PixelInfo§color_distance: f32§is_similar: boolTrait Implementations§
Source§impl Debug for PixelComparison
impl Debug for PixelComparison
Auto Trait Implementations§
impl Freeze for PixelComparison
impl RefUnwindSafe for PixelComparison
impl Send for PixelComparison
impl Sync for PixelComparison
impl Unpin for PixelComparison
impl UnsafeUnpin for PixelComparison
impl UnwindSafe for PixelComparison
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more