pub trait AudioProcessorHandleProvider {
// Required method
fn generic_handle(&self) -> AudioProcessorHandleRef;
}Expand description
A type which can create an AudioProcessorHandleRef
Required Methods§
fn generic_handle(&self) -> AudioProcessorHandleRef
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".