pub trait IntoParallelIterator1: IntoParallelIterator {
// Required method
fn into_par_iter1(self) -> ParallelIterator1<Self::Iter>;
}Available on crate feature
rayon only.Required Methods§
fn into_par_iter1(self) -> ParallelIterator1<Self::Iter>
Implementors§
impl<I> IntoParallelIterator1 for ParallelIterator1<I>where
I: ParallelIterator,
impl<K, V> IntoParallelIterator1 for &BTreeMap1<K, V>
Available on crate feature
alloc only.impl<K, V> IntoParallelIterator1 for &mut BTreeMap1<K, V>
Available on crate feature
alloc only.impl<K, V> IntoParallelIterator1 for BTreeMap1<K, V>
Available on crate feature
alloc only.impl<K, V, S> IntoParallelIterator1 for &IndexMap1<K, V, S>
Available on crate feature
indexmap only.impl<K, V, S> IntoParallelIterator1 for &mut IndexMap1<K, V, S>
Available on crate feature
indexmap only.impl<K, V, S> IntoParallelIterator1 for IndexMap1<K, V, S>
Available on crate feature
indexmap only.impl<T> IntoParallelIterator1 for &BTreeSet1<T>
Available on crate feature
alloc only.impl<T> IntoParallelIterator1 for &Slice1<T>where
T: Sync,
impl<T> IntoParallelIterator1 for &Vec1<T>where
T: Sync,
Available on crate feature
alloc only.impl<T> IntoParallelIterator1 for &VecDeque1<T>where
T: Sync,
Available on crate feature
alloc only.impl<T> IntoParallelIterator1 for &mut Slice1<T>where
T: Send,
impl<T> IntoParallelIterator1 for &mut Vec1<T>where
T: Send,
Available on crate feature
alloc only.impl<T> IntoParallelIterator1 for &mut VecDeque1<T>where
T: Send,
Available on crate feature
alloc only.impl<T> IntoParallelIterator1 for BTreeSet1<T>
Available on crate feature
alloc only.impl<T> IntoParallelIterator1 for Vec1<T>where
T: Send,
Available on crate feature
alloc only.impl<T> IntoParallelIterator1 for VecDeque1<T>where
T: Send,
Available on crate feature
alloc only.impl<T, S> IntoParallelIterator1 for &HashSet1<T, S>where
T: Sync,
Available on crate feature
std only.impl<T, S> IntoParallelIterator1 for &IndexSet1<T, S>
Available on crate feature
indexmap only.impl<T, S> IntoParallelIterator1 for HashSet1<T, S>where
T: Send,
Available on crate feature
std only.impl<T, S> IntoParallelIterator1 for IndexSet1<T, S>
Available on crate feature
indexmap only.