Struct git_features::parallel::reduce::IdentityWithResult
source · pub struct IdentityWithResult<Input, Error> { /* private fields */ }
Expand description
An identity reducer for those who want to use Stepwise
or in_parallel()
without the use of non-threaded reduction of products created in threads.
Trait Implementations§
source§impl<Input, Error> Default for IdentityWithResult<Input, Error>
impl<Input, Error> Default for IdentityWithResult<Input, Error>
source§impl<Input, Error> Reduce for IdentityWithResult<Input, Error>
impl<Input, Error> Reduce for IdentityWithResult<Input, Error>
§type FeedProduce = Input
type FeedProduce = Input
§type Output = ()
type Output = ()
The type produced once by the
finalize()
method. Read more