pub trait Processor:
Send
+ Sync
+ Any {
// Required method
fn process_frame(&mut self, frame: &mut AudioFrame) -> Result<()>;
}Required Methods§
fn process_frame(&mut self, frame: &mut AudioFrame) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".