pub struct Cloned<I> { /* private fields */ }Expand description
Cloned adapter for parallel iterators over references
Trait Implementations§
Source§impl<'a, I, T> ParallelIterator for Cloned<I>
impl<'a, I, T> ParallelIterator for Cloned<I>
Source§fn collect<C>(self) -> Cwhere
C: FromParallelIterator<Self::Item>,
fn collect<C>(self) -> Cwhere
C: FromParallelIterator<Self::Item>,
Collect into a collection
Source§fn find_any<P>(self, predicate: P) -> Option<Self::Item>
fn find_any<P>(self, predicate: P) -> Option<Self::Item>
Find any item that matches the predicate
Source§fn fold<T, ID, F>(self, identity: ID, fold_op: F) -> Fold<Self, ID, F>
fn fold<T, ID, F>(self, identity: ID, fold_op: F) -> Fold<Self, ID, F>
Fold items with an identity value and accumulator function
Auto Trait Implementations§
impl<I> Freeze for Cloned<I>where
I: Freeze,
impl<I> RefUnwindSafe for Cloned<I>where
I: RefUnwindSafe,
impl<I> Send for Cloned<I>where
I: Send,
impl<I> Sync for Cloned<I>where
I: Sync,
impl<I> Unpin for Cloned<I>where
I: Unpin,
impl<I> UnwindSafe for Cloned<I>where
I: 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