Struct std::rand::reseeding::ReseedWithDefault [] [src]

pub struct ReseedWithDefault;
Unstable (rand)

: use rand from crates.io

Reseed an RNG using a Default instance. This reseeds by replacing the RNG with the result of a Default::default call.

Trait Implementations

impl<R> Reseeder<R> for ReseedWithDefault where R: Rng + Default

fn reseed(&mut self, rng: &mut R)

impl Default for ReseedWithDefault

fn default() -> ReseedWithDefault

Derived Implementations

impl Clone for ReseedWithDefault

fn clone(&self) -> ReseedWithDefault

fn clone_from(&mut self, source: &Self)

impl Copy for ReseedWithDefault