pub type TypeIdMap<V> = HashMap<TypeId, V, NoOpHash>;
A specialized hashmap type with Key of TypeId Iteration order only depends on the order of insertions and deletions.
TypeId
struct TypeIdMap<V>(/* private fields */);