pub trait Bounded {
    fn max_value() -> Self;
    fn min_value() -> Self;
}
Expand description

The random range of different types.

Required Methods

Implementations on Foreign Types

Implementors