Crate dashmap
Source pub use mapref::entry::Entry;
pub use mapref::entry::OccupiedEntry;
pub use mapref::entry::VacantEntry;
- iter
- iter_set
- mapref
- setref
- try_result
- DashMap
- DashMap is an implementation of a concurrent associative array/hashmap in Rust.
- DashSet
- DashSet is a thin wrapper around
DashMap
using ()
as the value type. It uses
methods and types which are more convenient to work with on a set. - ReadOnlyView
- A read-only view into a
DashMap
. Allows to obtain raw references to the stored values. - TryReserveError
- Map
- Implementation detail that is exposed due to generic constraints in public types.