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]

[src]

Trait Implementations

impl<Sup> Copy for RandSample<Sup>
[src]

impl<Sup> Clone for RandSample<Sup>
[src]

[src]

impl<Sup> Sample<Sup> for RandSample<Sup> where
    Sup: Rand
[src]

[src]

Generate a random value of Support, using rng as the source of randomness. Read more

impl<Sup> Debug for RandSample<Sup> where
    Sup: Debug
[src]

[src]

impl<Sup> IndependentSample<Sup> for RandSample<Sup> where
    Sup: Rand
[src]

[src]

Generate a random value.