pub type PreHashMap<K, V> = HashMap<Hashed<K>, V, PassHash>;
A HashMap pre-configured to use Hashed keys and PassHash passthrough hashing. Iteration order only depends on the order of insertions and deletions.
HashMap
Hashed
PassHash
struct PreHashMap<K, V> { /* private fields */ }