Trait SF2Synthesizable

Source
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§

Source

fn synthesize_with<'a>( &'a self, synth: &'a SF2Synthesizer, ) -> SF2SynthesisRequest<'_, M>

Prepare to synthesize with a SF2Synthesizer.

Implementors§