Keyed

Trait Keyed 

Source
pub trait Keyed {
    type Key;
}
Expand description

Marker trait for keyed collections describing their key type.

Required Associated Types§

Implementations on Foreign Types§

Source§

impl<K> Keyed for BTreeSet<K>

Source§

type Key = K

Source§

impl<K> Keyed for HashSet<K>

Source§

type Key = K

Source§

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

Source§

type Key = K

Source§

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

Source§

type Key = K

Implementors§

Source§

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

Source§

type Key = K