pub type HashStrMap<'a, V> = HashMap<&'a HashStr, V, BuildHasherDefault<IdentityHasher>>;Expand description
A standard HashMap using &HashStr as the key type with a custom Hasher
that just uses the precomputed hash for speed instead of calculating it.
Aliased Typeยง
struct HashStrMap<'a, V> { /* private fields */ }