pub trait ArgminRandom {
    fn rand_from_range(min: &Self, max: &Self) -> Self;
}
Expand description

Create a random number

Required Methods

Get a random element between min and max,

Implementations on Foreign Types

Implementors