struct IterParallelProducer<'a, Iter> {
    split_count: AtomicUsize,
    iter: Mutex<Fuse<Iter>>,
    threads_started: &'a [AtomicBool],
}Fields§
§split_count: AtomicUsize§iter: Mutex<Fuse<Iter>>§threads_started: &'a [AtomicBool]Trait Implementations§
Source§impl<Iter: Iterator + Send> UnindexedProducer for &IterParallelProducer<'_, Iter>
 
impl<Iter: Iterator + Send> UnindexedProducer for &IterParallelProducer<'_, Iter>
Auto Trait Implementations§
impl<'a, Iter> !Freeze for IterParallelProducer<'a, Iter>
impl<'a, Iter> RefUnwindSafe for IterParallelProducer<'a, Iter>
impl<'a, Iter> Send for IterParallelProducer<'a, Iter>where
    Iter: Send,
impl<'a, Iter> Sync for IterParallelProducer<'a, Iter>where
    Iter: Send,
impl<'a, Iter> Unpin for IterParallelProducer<'a, Iter>where
    Iter: Unpin,
impl<'a, Iter> UnwindSafe for IterParallelProducer<'a, Iter>
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