Struct 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: 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