[][src]Crate dashmap

dashmap provides a relatively low level high performance concurrent hash map. See struct level docs for more details.

Serde is supported if the serde feature is enabled. Then DashMap will implement Serialize and Deserialize.

Structs

DashMap

DashMap is an implementation of a concurrent associative array/hash map in Rust.

ElementGuard

ElementGuard<K, V>'s are references to active or past map entries. They provide access to the key and value. They exist to automatically manage memory across threads to ensure a safe interface.

Iter

Iterator over entries in a map.