Struct img_hash::Hasher[][src]

pub struct Hasher<B = Box<[u8]>> { /* fields omitted */ }

Generates hashes for images.

Constructed via HasherConfig::to_hasher().

Implementations

impl<B> Hasher<B> where
    B: HashBytes
[src]

pub fn hash_image<I: Image>(&self, img: &I) -> ImageHash<B>[src]

Calculate a hash for the given image with the configured options.

Auto Trait Implementations

impl<B = Box<[u8], Global>> !RefUnwindSafe for Hasher<B>

impl<B = Box<[u8], Global>> !Send for Hasher<B>

impl<B = Box<[u8], Global>> !Sync for Hasher<B>

impl<B> Unpin for Hasher<B> where
    B: Unpin

impl<B = Box<[u8], Global>> !UnwindSafe for Hasher<B>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.