Trait eclectic::map::Base [] [src]

pub trait Base {
    type Key;
    type Value;
}

A trait that declares a map's key and value types.

It is unusual to bound a type by this trait directly.

Associated Types

type Key

The map's key type.

type Value

The map's value type.

Implementors