pub trait Sample: Distribution {
    fn sample<S>(&self, source: &mut S) -> Self::Value
    where
        S: Source
; }
Expand description

A distribution capable of drawing samples.

Required Methods

Draw a sample.

Implementors