pub trait SeedOnlyNoise {
    type Seed;
    type Value;

    fn seed(seed: Self::Seed) -> Self;
}
Expand description

A helper trait which uses EmptyConfig to automatically implement seeding.

Required Associated Types

Required Methods

Implementors