pub trait SampleUniform: Sized {
    type Sampler: UniformSampler<Self>;
}
Expand description

Helper trait specifies the concrete sampler for the sampling type.

Required Associated Types

The concrete distribution type used to sample from Self.

Implementations on Foreign Types

Implementors