pub trait Sink:
'static
+ Send
+ Sized {
// Required method
fn write<S: Iterator<Item = (f64, Polar<f64>)>>(&mut self, samples: S);
// Provided method
fn spawn(self) -> BoxProcessor { ... }
}Required Methods§
Provided Methods§
fn spawn(self) -> BoxProcessor
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.