pub type StrMap<T> = HashMap<Box<str>, T>;
A map from Box<str>s to values of type T.
Box<str>
T
struct StrMap<T> { /* private fields */ }