pub struct PerceptualHash(pub u64);Expand description
A 64-bit perceptual hash stored as a u64 bitmask.
Tuple Fields§
§0: u64Implementations§
Source§impl PerceptualHash
impl PerceptualHash
Sourcepub fn hamming_distance(self, other: Self) -> u32
pub fn hamming_distance(self, other: Self) -> u32
Hamming distance to another perceptual hash.
Two images are considered visually similar when the distance is ≤ 10.
Sourcepub fn is_similar(self, other: Self, threshold: u32) -> bool
pub fn is_similar(self, other: Self, threshold: u32) -> bool
Whether two hashes are perceptually similar (distance ≤ threshold).
Trait Implementations§
Source§impl Clone for PerceptualHash
impl Clone for PerceptualHash
Source§fn clone(&self) -> PerceptualHash
fn clone(&self) -> PerceptualHash
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 PerceptualHash
impl Debug for PerceptualHash
Source§impl Display for PerceptualHash
impl Display for PerceptualHash
Source§impl Hash for PerceptualHash
impl Hash for PerceptualHash
Source§impl PartialEq for PerceptualHash
impl PartialEq for PerceptualHash
impl Copy for PerceptualHash
impl Eq for PerceptualHash
impl StructuralPartialEq for PerceptualHash
Auto Trait Implementations§
impl Freeze for PerceptualHash
impl RefUnwindSafe for PerceptualHash
impl Send for PerceptualHash
impl Sync for PerceptualHash
impl Unpin for PerceptualHash
impl UnsafeUnpin for PerceptualHash
impl UnwindSafe for PerceptualHash
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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