Map

Type Alias Map 

Source
pub type Map<K, V> = BTreeMap<K, V>;
Expand description

An alias for a key-value map.

By default, this is an alias for the alloc::collections::BTreeMap, however, when the hashmaps feature is enabled, this is an alias for the hashbrown’s HashMap.

Aliased Type§

pub struct Map<K, V> { /* private fields */ }