Struct rand::reseeding::ReseedWithDefault
[−]
[src]
pub struct ReseedWithDefault;
Reseed an RNG using a Default
instance. This reseeds by
replacing the RNG with the result of a Default::default
call.
Trait Implementations
impl Default for ReseedWithDefault
[src]
fn default() -> ReseedWithDefault
[src]
Returns the "default value" for a type. Read more
impl Debug for ReseedWithDefault
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more
impl Copy for ReseedWithDefault
[src]
impl Clone for ReseedWithDefault
[src]
fn clone(&self) -> ReseedWithDefault
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<R> Reseeder<R> for ReseedWithDefault where
R: Rng + Default,
[src]
R: Rng + Default,