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: Debug> Debug for RandSample<Sup>
[src]

[src]

Formats the value using the given formatter.

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

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

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

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

[src]

Generate a random value.