Struct gix_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 moreAuto Trait Implementations§
impl<Input, Error> Freeze for IdentityWithResult<Input, Error>
impl<Input, Error> RefUnwindSafe for IdentityWithResult<Input, Error>where
Input: RefUnwindSafe,
Error: RefUnwindSafe,
impl<Input, Error> Send for IdentityWithResult<Input, Error>
impl<Input, Error> Sync for IdentityWithResult<Input, Error>
impl<Input, Error> Unpin for IdentityWithResult<Input, Error>
impl<Input, Error> UnwindSafe for IdentityWithResult<Input, Error>where
Input: UnwindSafe,
Error: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more