Trait git_features::parallel::reduce::Finalize[][src]

pub trait Finalize {
    type Reduce: Reduce;
    fn finalize(
        self
    ) -> Result<<Self::Reduce as Reduce>::Output, <Self::Reduce as Reduce>::Error>; }

A trait reflecting the finalize() method of Reduce implementations

Associated Types

type Reduce: Reduce[src]

An implementation of Reduce

Loading content...

Required methods

fn finalize(
    self
) -> Result<<Self::Reduce as Reduce>::Output, <Self::Reduce as Reduce>::Error>
[src]

Similar to the Reduce::finalize() method

Loading content...

Implementors

impl<R: Reduce> Finalize for Stepwise<R>[src]

type Reduce = R

Loading content...