Crate nohash_hasher
source ·Structs§
- For an enabled type
T
, aNoHashHasher<T>
implementsstd::hash::Hasher
and uses the value set by one of thewrite_{u8, u16, u32, u64, usize, i8, i16, i32, i64, isize}
methods as its hash output.
Traits§
- Types which are safe to use with
NoHashHasher
.
Type Aliases§
- An alias for
BuildHasherDefault
for use withNoHashHasher
. - A
HashMap
with an integer domain, usingNoHashHasher
to perform no hashing at all. - A
HashSet
of integers, usingNoHashHasher
to perform no hashing at all.