pub trait Finalize {
    type Reduce: Reduce;

    fn finalize(
        self
    ) -> Result<<Self::Reduce as Reduce>::Output, <Self::Reduce as Reduce>::Error>; }
Available on crate feature unstable only.
Expand description

A trait reflecting the finalize() method of Reduce implementations

Required Associated Types

An implementation of Reduce

Required Methods

Similar to the Reduce::finalize() method

Implementors