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]
impl<Sup> RandSample<Sup>
pub fn new() -> RandSample<Sup>
[src]
pub fn new() -> RandSample<Sup>
Trait Implementations
impl<Sup: Debug> Debug for RandSample<Sup>
[src]
impl<Sup: Debug> Debug for RandSample<Sup>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<Sup> Copy for RandSample<Sup>
[src]
impl<Sup> Copy for RandSample<Sup>
impl<Sup> Clone for RandSample<Sup>
[src]
impl<Sup> Clone for RandSample<Sup>
fn clone(&self) -> Self
[src]
fn clone(&self) -> Self
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl<Sup: Rand> Sample<Sup> for RandSample<Sup>
[src]
impl<Sup: Rand> Sample<Sup> for RandSample<Sup>
fn sample<R: Rng>(&mut self, rng: &mut R) -> Sup
[src]
fn sample<R: Rng>(&mut self, rng: &mut R) -> Sup
Generate a random value of Support
, using rng
as the source of randomness. Read more
impl<Sup: Rand> IndependentSample<Sup> for RandSample<Sup>
[src]
impl<Sup: Rand> IndependentSample<Sup> for RandSample<Sup>
fn ind_sample<R: Rng>(&self, rng: &mut R) -> Sup
[src]
fn ind_sample<R: Rng>(&self, rng: &mut R) -> Sup
Generate a random value.
Auto Trait Implementations
impl<Sup> Send for RandSample<Sup>
impl<Sup> Send for RandSample<Sup>
impl<Sup> Sync for RandSample<Sup>
impl<Sup> Sync for RandSample<Sup>