Struct hash_hasher::HashHasher[][src]

pub struct HashHasher(_);

A hasher which does minimal work to create the required u64 output under the assumption that the input is already a hash digest or otherwise already suitable for use as a key in a HashSet or HashMap.

Trait Implementations

impl Copy for HashHasher
[src]

impl Clone for HashHasher
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for HashHasher
[src]

Returns the "default value" for a type. Read more

impl Hasher for HashHasher
[src]

Writes some data into this Hasher. Read more

Returns the hash value for the values written so far. Read more

Writes a single u8 into this hasher.

Writes a single u16 into this hasher.

Writes a single u32 into this hasher.

Writes a single u64 into this hasher.

Writes a single u128 into this hasher.

Writes a single usize into this hasher.

Writes a single i8 into this hasher.

Writes a single i16 into this hasher.

Writes a single i32 into this hasher.

Writes a single i64 into this hasher.

Writes a single i128 into this hasher.

Writes a single isize into this hasher.

Auto Trait Implementations

impl Send for HashHasher

impl Sync for HashHasher