pub trait BTreeMapUtils<T, U> { // Required methods fn min_elem(&self) -> Option<(&T, &U)>; fn max_elem(&self) -> Option<(&T, &U)>; }