Expand description
A fork of the dashmap crate to expose a raw hash table API.
Structs§
- Dash
Table - A concurrent raw hash table with items of type
T. - Occupied
Entry - A hash table entry that contains a value.
- Ref
- Read-only reference to a value in a table.
- Vacant
Entry - A hash table entry that doesn’t contain any value.
Enums§
- Entry
- A view into a single entry in a table, which may either be vacant or occupied.
Type Aliases§
- MutEntry
- A view into a single entry in a mutable table, which may either be vacant or occupied.
- MutOccupied
Entry - An entry in a mutable hash table that contains a value.