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>

fn new() -> RandSample<Sup>

Trait Implementations

impl<Sup: Rand> Sample<Sup> for RandSample<Sup>

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

impl<Sup: Rand> IndependentSample<Sup> for RandSample<Sup>

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