pub struct ForEach<P, F> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<P: DistributedPipe<Item>, Item, F> DistributedSink<Item> for ForEach<P, F>
impl<P: DistributedPipe<Item>, Item, F> DistributedSink<Item> for ForEach<P, F>
Source§impl<P: ParallelPipe<Item>, Item, F> ParallelSink<Item> for ForEach<P, F>
impl<P: ParallelPipe<Item>, Item, F> ParallelSink<Item> for ForEach<P, F>
Auto Trait Implementations§
impl<P, F> Freeze for ForEach<P, F>
impl<P, F> RefUnwindSafe for ForEach<P, F>where
P: RefUnwindSafe,
F: RefUnwindSafe,
impl<P, F> Send for ForEach<P, F>
impl<P, F> Sync for ForEach<P, F>
impl<P, F> Unpin for ForEach<P, F>
impl<P, F> UnsafeUnpin for ForEach<P, F>where
P: UnsafeUnpin,
F: UnsafeUnpin,
impl<P, F> UnwindSafe for ForEach<P, F>where
P: UnwindSafe,
F: 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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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