pub trait TypeGeneratorWithParams {
    type Output: ValueGenerator;

    fn gen_with() -> Self::Output;
}
Expand description

Convert a type generator into the default value generator

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors