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

pub struct RandSample<Sup> {
    _marker: PhantomData<Sup>,
}
Unstable (rand)

: use rand from crates.io

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

Fields

_marker
Unstable (rand)

: use rand from crates.io

Methods

impl<Sup> RandSample<Sup>

fn new() -> RandSample<Sup>

Unstable (rand)

: use rand from crates.io

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