Expand description
Re-exports§
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§
- Hash
Table - Low-level hash table with explicit hashing.
Traits§
- Equivalent
- Key equivalence trait.