[][src]Trait git_features::parallel::Reducer

pub trait Reducer {
    type Input;
    type Output;
    type Error;
    fn feed(&mut self, input: Self::Input) -> Result<(), Self::Error>;
fn finalize(self) -> Result<Self::Output, Self::Error>; }

Associated Types

type Input

type Output

type Error

Loading content...

Required methods

fn feed(&mut self, input: Self::Input) -> Result<(), Self::Error>

fn finalize(self) -> Result<Self::Output, Self::Error>

Loading content...

Implementors

Loading content...