Trait OpSampler

Source
pub trait OpSampler {
    // Required method
    fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Op;
}
Expand description

A trait to allow clients to specify their own sample rates (or disable certain operations).

Required Methods§

Source

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Op

Picks a random Op.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§