Expand description
Modules§
- hash_
map - Provides
HashMap
based on hashbrown’s implementation. Unlikehashbrown::HashMap
,HashMap
defaults toFixedHasher
instead 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
HashSet
based on hashbrown’s implementation. Unlikehashbrown::HashSet
,HashSet
defaults toFixedHasher
instead 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
HashMap
withFixedHasher
as the default hashing provider. Can be trivially converted to and from a hashbrownHashMap
usingFrom
. - HashSet
- New-type for
HashSet
withFixedHasher
as the default hashing provider. Can be trivially converted to and from a hashbrownHashSet
usingFrom
. - Hash
Table - Low-level hash table with explicit hashing.
Traits§
- Equivalent
- Key equivalence trait.