pub type IdSet = HashSet<Id, BuildIdHasher>;
IdSet is a HashSet<Id> optimized by knowing that Id has good entropy, and doesn’t need more hashing.
IdSet
HashSet<Id>
Id
struct IdSet { /* private fields */ }