pub type HashStrSet<'a> = HashSet<&'a HashStr, BuildHasherDefault<IdentityHasher>>;Expand description
A standard HashSet 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 HashStrSet<'a> { /* private fields */ }