pub trait PipelineEntry<In, Out> {
// Required method
fn process<I: IntoIterator<Item = In>>(self, tx: Sender<Out>, rx: I);
}
Expand description
A trait for structs that may be used as Pipeline
entries
Required Methods§
fn process<I: IntoIterator<Item = In>>(self, tx: Sender<Out>, rx: I)
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.