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