pub trait Sample {
type Param;
// Required method
fn sample(&self, rng: &mut Rng) -> Self::Param;
}Expand description
Parameter sampler.
pub trait Sample {
type Param;
// Required method
fn sample(&self, rng: &mut Rng) -> Self::Param;
}Parameter sampler.