pub trait Reducer<Result> {
    fn reduce(self, left: Result, right: Result) -> Result;
}
Expand description

The reducer is the final step of a Consumer – after a consumer has been split into two parts, and each of those parts has been fully processed, we are left with two results. The reducer is then used to combine those two results into one. See the plumbing README for further details.

Required Methods

Reduce two final results into one; this is executed after a split.

Implementors