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

Required Methods

Implementors