Sink

Trait Sink 

Source
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§

Source

fn write<S: Iterator<Item = (f64, Polar<f64>)>>(&mut self, samples: S)

Provided Methods§

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.

Implementors§