pub type IdMap<V> = HashMap<Id, V, BuilIdHasher>;
IdMap<V> is a HashMap<Id, V> optimized by knowing that Id has good entropy, and doesn’t need more hashing.
IdMap<V>
HashMap<Id, V>
Id