pub type Map<K, V> = Arc<RwLock<HashMap<K, V>>>;
Expand description

Thread-safe HashMap a Collection is built upon.