pub trait MaybeBounded: Sized { // Required methods fn min() -> Option<Self>; fn max() -> Option<Self>; }