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

A trait reflecting the finalize() method of Reduce implementations

Associated Types

An implementation of Reduce

Required methods

Similar to the Reduce::finalize() method

Implementors