pub type BTreeMultiMap<K, V> = MultiMap<BTreeMap<K, BTreeSet<V>>>;
A multi-map that uses BTreeMap for the keys and BTreeSet for the values.
BTreeMap
BTreeSet
pub struct BTreeMultiMap<K, V> { /* private fields */ }