Skip to main content

RngBuilder

Trait RngBuilder 

Source
pub trait RngBuilder<T> {
    type Rng: Rng + 'static;

    // Required method
    fn build_rng(&self, mixin: T) -> Self::Rng;
}
Expand description

Creation of random number generator in potentially parallelized applications.

Required Associated Types§

Source

type Rng: Rng + 'static

Required Methods§

Source

fn build_rng(&self, mixin: T) -> Self::Rng

Implementors§