Struct rand::distributions::RandSample
[−]
[src]
pub struct RandSample<Sup> { /* 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>
[src]
Trait Implementations
impl<Sup> Debug for RandSample<Sup> where
Sup: Debug,
[src]
Sup: Debug,
impl<Sup> Copy for RandSample<Sup>
[src]
impl<Sup> Sample<Sup> for RandSample<Sup> where
Sup: Rand,
[src]
Sup: Rand,
fn sample<R>(&mut self, rng: &mut R) -> Sup where
R: Rng,
[src]
R: Rng,
Generate a random value of Support
, using rng
as the source of randomness. Read more
impl<Sup> IndependentSample<Sup> for RandSample<Sup> where
Sup: Rand,
[src]
Sup: Rand,
fn ind_sample<R>(&self, rng: &mut R) -> Sup where
R: Rng,
[src]
R: Rng,
Generate a random value.