Struct rand::distributions::RandSample [] [src]

pub struct RandSample<Sup> {
    // some fields omitted
}

A wrapper for generating types that implement Rand via the Sample & IndependentSample traits.

Methods

impl<Sup> RandSample<Sup>
[src]

fn new() -> RandSample<Sup>

Trait Implementations

impl<Sup> Copy for RandSample<Sup>
[src]

impl<Sup> Clone for RandSample<Sup>
[src]

fn clone(&self) -> Self

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl<Sup: Rand> Sample<Sup> for RandSample<Sup>
[src]

fn sample<R: Rng>(&mut self, rng: &mut R) -> Sup

Generate a random value of Support, using rng as the source of randomness. Read more

impl<Sup: Rand> IndependentSample<Sup> for RandSample<Sup>
[src]

fn ind_sample<R: Rng>(&self, rng: &mut R) -> Sup

Generate a random value.