pub trait SF2Synthesizable<M: MidiBytesProvider> {
// Required method
fn synthesize_with<'a>(
&'a self,
synth: &'a SF2Synthesizer,
) -> SF2SynthesisRequest<'_, M>;
}
Expand description
A trait implemented by types which can be synthesized.
Required Methods§
Sourcefn synthesize_with<'a>(
&'a self,
synth: &'a SF2Synthesizer,
) -> SF2SynthesisRequest<'_, M>
fn synthesize_with<'a>( &'a self, synth: &'a SF2Synthesizer, ) -> SF2SynthesisRequest<'_, M>
Prepare to synthesize with a SF2Synthesizer
.