pub trait EarMicOutAudioFrame<B: Blep> {
// Required method
fn render_earmic_out_audio_frame<V: AmpLevels<B::SampleDelta>>(
&self,
blep: &mut B,
channel: usize,
);
}Expand description
A trait for controllers generating audio pulses from the EAR/MIC output.
Required Methods§
Sourcefn render_earmic_out_audio_frame<V: AmpLevels<B::SampleDelta>>(
&self,
blep: &mut B,
channel: usize,
)
fn render_earmic_out_audio_frame<V: AmpLevels<B::SampleDelta>>( &self, blep: &mut B, channel: usize, )
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.