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

pub struct RandSample<Sup> { /* fields omitted */ }
🔬 This is a nightly-only experimental API. (rand)

use rand from crates.io

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

Methods

impl<Sup> RandSample<Sup>
[src]

🔬 This is a nightly-only experimental API. (rand)

use rand from crates.io

Trait Implementations

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

🔬 This is a nightly-only experimental API. (rand)

use rand from crates.io

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

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

🔬 This is a nightly-only experimental API. (rand)

use rand from crates.io

Generate a random value.

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

Formats the value using the given formatter.