IntoParallelIterator1

Trait IntoParallelIterator1 

Source
pub trait IntoParallelIterator1: IntoParallelIterator {
    // Required method
    fn into_par_iter1(self) -> ParallelIterator1<Self::Iter>;
}
Available on crate feature rayon only.

Required Methods§

Implementors§

Source§

impl<I> IntoParallelIterator1 for ParallelIterator1<I>

Source§

impl<K, V> IntoParallelIterator1 for &BTreeMap1<K, V>
where K: Ord + Sync, V: Sync,

Available on crate feature alloc only.
Source§

impl<K, V> IntoParallelIterator1 for &mut BTreeMap1<K, V>
where K: Ord + Sync, V: Send,

Available on crate feature alloc only.
Source§

impl<K, V> IntoParallelIterator1 for BTreeMap1<K, V>
where K: Ord + Send, V: Send,

Available on crate feature alloc only.
Source§

impl<K, V, S> IntoParallelIterator1 for &IndexMap1<K, V, S>
where K: Sync, V: Sync,

Available on crate feature indexmap only.
Source§

impl<K, V, S> IntoParallelIterator1 for &mut IndexMap1<K, V, S>
where K: Send + Sync, V: Send,

Available on crate feature indexmap only.
Source§

impl<K, V, S> IntoParallelIterator1 for IndexMap1<K, V, S>
where K: Send, V: Send,

Available on crate feature indexmap only.
Source§

impl<T> IntoParallelIterator1 for &BTreeSet1<T>
where T: Ord + Sync,

Available on crate feature alloc only.
Source§

impl<T> IntoParallelIterator1 for &Slice1<T>
where T: Sync,

Source§

impl<T> IntoParallelIterator1 for &Vec1<T>
where T: Sync,

Available on crate feature alloc only.
Source§

impl<T> IntoParallelIterator1 for &VecDeque1<T>
where T: Sync,

Available on crate feature alloc only.
Source§

impl<T> IntoParallelIterator1 for &mut Slice1<T>
where T: Send,

Source§

impl<T> IntoParallelIterator1 for &mut Vec1<T>
where T: Send,

Available on crate feature alloc only.
Source§

impl<T> IntoParallelIterator1 for &mut VecDeque1<T>
where T: Send,

Available on crate feature alloc only.
Source§

impl<T> IntoParallelIterator1 for BTreeSet1<T>
where T: Ord + Send,

Available on crate feature alloc only.
Source§

impl<T> IntoParallelIterator1 for Vec1<T>
where T: Send,

Available on crate feature alloc only.
Source§

impl<T> IntoParallelIterator1 for VecDeque1<T>
where T: Send,

Available on crate feature alloc only.
Source§

impl<T, S> IntoParallelIterator1 for &HashSet1<T, S>
where T: Sync,

Available on crate feature std only.
Source§

impl<T, S> IntoParallelIterator1 for &IndexSet1<T, S>
where T: Sync, S: Sync,

Available on crate feature indexmap only.
Source§

impl<T, S> IntoParallelIterator1 for HashSet1<T, S>
where T: Send,

Available on crate feature std only.
Source§

impl<T, S> IntoParallelIterator1 for IndexSet1<T, S>
where T: Send, S: Send,

Available on crate feature indexmap only.