pub trait TuneFn:
Send
+ Sync
+ 'static {
type Inputs: Clone;
type Output;
// Required method
fn execute(
&self,
inputs: Self::Inputs,
) -> Result<Self::Output, AutotuneError>;
// Provided method
fn name(&self) -> &str { ... }
}
Expand description
A tunable entry in a tunable set