pub trait SampleSinkProxyInterface: Send + Sync {
// Required method
fn on_sample_readied(&self, event: SampleSinkResult) -> Result<(), Error>;
}Required Methods§
fn on_sample_readied(&self, event: SampleSinkResult) -> Result<(), Error>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".