Expand description
Modules§
- hash_
map - Provides
HashMapbased on hashbrown’s implementation. Unlikehashbrown::HashMap,HashMapdefaults toFixedHasherinstead ofRandomState. This provides determinism by default with an acceptable compromise to denial of service resistance in the context of a game engine. - hash_
set - Provides
HashSetbased on hashbrown’s implementation. Unlikehashbrown::HashSet,HashSetdefaults toFixedHasherinstead ofRandomState. This provides determinism by default with an acceptable compromise to denial of service resistance in the context of a game engine. - hash_
table - Provides
HashTable
Structs§
- HashMap
- New-type for
HashMapwithFixedHasheras the default hashing provider. Can be trivially converted to and from a hashbrownHashMapusingFrom. - HashSet
- New-type for
HashSetwithFixedHasheras the default hashing provider. Can be trivially converted to and from a hashbrownHashSetusingFrom. - Hash
Table - Low-level hash table with explicit hashing.
Traits§
- Equivalent
- Key equivalence trait.