pub trait IntoInputGenerator<K, Inputs, Marker> {
type Generator: InputGenerator<K, Inputs>;
// Required method
fn into_input_gen(self) -> Self::Generator;
}
Expand description
Something that can be turned into an input generator
Required Associated Types§
Sourcetype Generator: InputGenerator<K, Inputs>
type Generator: InputGenerator<K, Inputs>
The concrete type of the input generator
Required Methods§
Sourcefn into_input_gen(self) -> Self::Generator
fn into_input_gen(self) -> Self::Generator
Convert this type into a concrete input generator