Randomizer

Trait Randomizer 

Source
pub trait Randomizer: 'static + Rng { }
Expand description

Core of random data generator

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<R: 'static + Rng> Randomizer for R