pub trait RngSingleton {
    type D: DerefMut<Target = ChaCha12Rng>;

    fn instance() -> Self::D;
}
Expand description

RNG singleton

Required Associated Types

&mut ChaCha12Rng

Required Methods

Singleton instance

Implementors