pub trait Bounded {
    fn min() -> Self;
    fn max() -> Self;
}

Required Methods

Implementations on Foreign Types

Implementors