Struct std::rand::distributions::RandSampleUnstable [-] [+] [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> Sample<Sup> for RandSample<Sup> where Sup: Rand

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

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

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