pub trait RandomRange {
    fn gen_range(low: Self, high: Self) -> Self;
}

Required Methods

Implementations on Foreign Types

Implementors