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