Trait eclectic::map::Map [] [src]

pub trait Map: Collection<Item=(Self::Key, Self::Value)> {
    type Key;
    type Value;
}

A map.

A map is a collection that associates keys with values, where the keys are distinguished according to some uniqueness criteria.

Associated Types

type Key

The type of the map's keys.

type Value

The type of the map's values.

Implementors