pub trait Bounded: Sized {
    const MIN: Self;
    const MAX: Self;
}

Required Associated Constants

Implementations on Foreign Types

Implementors