Map

Trait Map 

Source
pub trait Map {
    type Item;
}
Expand description

Marker trait for map-like types that store values of type Item.

Required Associated Types§

Implementations on Foreign Types§

Source§

impl<K> Map for BTreeSet<K>

Source§

impl<K> Map for HashSet<K>

Source§

impl<K> Map for RTree<K>
where K: RTreeObject,

Source§

impl<K, V> Map for BTreeMap<K, V>

Source§

type Item = V

Source§

impl<K, V> Map for HashMap<K, V>

Source§

type Item = V

Source§

impl<V> Map for Arena<V>

Source§

type Item = V

Source§

impl<V, C> Map for StableVecFacade<V, C>
where C: Core<V>,

Source§

type Item = V

Implementors§

Source§

impl<K, V: RTreeObject, C> Map for RTreed<K, V, C>

Source§

type Item = V