pub trait Collector<T> {
// Required method
fn push(&mut self, rec: Record<T>) -> Flow;
}Expand description
Push-model stage: receives one record, forwards 0..N downstream.
Composed statically — Map<F, Filter<P, Term>> monomorphizes into a
single inlined loop body.
Required Methods§
Sourcefn push(&mut self, rec: Record<T>) -> Flow
fn push(&mut self, rec: Record<T>) -> Flow
Push one record. Flow::Blocked propagates up to the boundary.