pub trait IntoTuneFn<In, Out, Marker> {
type Tunable: TuneFn<Inputs = In, Output = Out>;
// Required method
fn into_tunable(self) -> Self::Tunable;
}
Expand description
Required Associated Types§
Required Methods§
Sourcefn into_tunable(self) -> Self::Tunable
fn into_tunable(self) -> Self::Tunable
Convert to a tunable