pub trait IntoTunable<In, Out, Marker> {
type Tunable: Tunable<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