pub trait Random: Sized {
    fn random() -> Self;
    fn random_in(range: Range<Self>) -> Self;
}

Required Methods

Implementations on Foreign Types

Implementors