pub trait Sample<Support> { fn sample<R: Rng>(&mut self, rng: &mut R) -> Support; }
Types that can be used to create a random instance of Support.
Support
Generate a random value of Support, using rng as the source of randomness.
rng