Trait IntoInputGenerator

Source
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§

Source

type Generator: InputGenerator<K, Inputs>

The concrete type of the input generator

Required Methods§

Source

fn into_input_gen(self) -> Self::Generator

Convert this type into a concrete input generator

Implementors§

Source§

impl<K, Inputs, Marker, F> IntoInputGenerator<K, Inputs, Marker> for F
where Marker: 'static, F: FunctionInputGen<K, Inputs, Marker>,