[][src]Crate dashmap

Structs

DashMap

DashMap is an implementation of a concurrent associative array/hashmap 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.