Expand description
This is a fork of the inactive project paritytech/nohash-hasher.
Structs§
- Identity
Hasher - For an enabled type
T
, aIdentityHasher<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§
- Identity
Hashable - Types which are safe to use with
IdentityHasher
.
Type Aliases§
- Build
Identity Hasher - An alias for
BuildHasherDefault
for use withIdentityHasher
. - IntMap
- A
HashMap
with an integer domain, usingIdentityHasher
to perform no hashing at all. - IntSet
- A
HashSet
of integers, usingIdentityHasher
to perform no hashing at all.