pub trait FunctionInputGen<K, Inputs, Marker>: 'static {
// Required method
fn execute(&self, key: &K, inputs: &Inputs) -> Inputs;
}
Expand description
A function that can be turned into an input generator for Inputs
pub trait FunctionInputGen<K, Inputs, Marker>: 'static {
// Required method
fn execute(&self, key: &K, inputs: &Inputs) -> Inputs;
}
A function that can be turned into an input generator for Inputs