Trait ValueOrNoise

Source
pub trait ValueOrNoise {
    type Noise;

    // Required method
    fn into_noise(self) -> Self::Noise;
}
Expand description

Either a f32 or a noise.

Used for Noise modifier methods.

Required Associated Types§

Required Methods§

Source

fn into_noise(self) -> Self::Noise

Implementations on Foreign Types§

Source§

impl ValueOrNoise for f32

Implementors§