pub trait Generator<T>: GeneratorTolerance {
    fn generate(&self) -> T;
}
Expand description

Generates a value of type T

Required Methods

Implementations on Foreign Types

Implementors