pub type SharedMap<K, V> = Arc<RwLock<HashMap<K, V>>>;
A shared map type
pub struct SharedMap<K, V> { /* private fields */ }