Home
last modified time | relevance | path

Searched defs:IntoParIter (Results 1 – 8 of 8) sorted by relevance

/external/rust/android-crates-io/crates/indexmap/src/
Drustc.rs27 pub struct IntoParIter<K, V> { struct
28 entries: Vec<Bucket<K, V>>,
31 impl<K: Send, V: Send> ParallelIterator for IntoParIter<K, V> { implementation
37 impl<K: Send, V: Send> IndexedParallelIterator for IntoParIter<K, V> { implementation
117 pub struct IntoParIter<T> { struct
118 entries: Vec<Bucket<T, ()>>,
121 impl<T: Send> ParallelIterator for IntoParIter<T> { implementation
127 impl<T: Send> IndexedParallelIterator for IntoParIter<T> { implementation
/external/rust/android-crates-io/crates/hashbrown/src/external_trait_impls/rayon/
Dtable.rs103 pub struct IntoParIter<T, A: Allocator = Global> { struct
104 inner: RawIntoParIter<T, A>, argument
107 impl<T: Send, A: Allocator + Send> ParallelIterator for IntoParIter<T, A> { implementation
119 impl<T: fmt::Debug, A: Allocator> fmt::Debug for IntoParIter<T, A> { implementation
Dmap.rs235 pub struct IntoParIter<K, V, A: Allocator = Global> { struct
236 inner: RawIntoParIter<(K, V), A>, argument
239 impl<K: Send, V: Send, A: Allocator + Send> ParallelIterator for IntoParIter<K, V, A> { implementation
251 impl<K: fmt::Debug + Eq + Hash, V: fmt::Debug, A: Allocator> fmt::Debug for IntoParIter<K, V, A> { implementation
Dset.rs19 pub struct IntoParIter<T, A: Allocator = Global> { struct
20 inner: map::IntoParIter<T, (), A>, argument
23 impl<T: Send, A: Allocator + Send> ParallelIterator for IntoParIter<T, A> { implementation
/external/rust/android-crates-io/crates/indexmap/src/rayon/
Dmap.rs45 pub struct IntoParIter<K, V> { struct
49 impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for IntoParIter<K, V> { argument
56 impl<K: Send, V: Send> ParallelIterator for IntoParIter<K, V> { implementation
62 impl<K: Send, V: Send> IndexedParallelIterator for IntoParIter<K, V> { implementation
Dset.rs45 pub struct IntoParIter<T> { struct
49 impl<T: fmt::Debug> fmt::Debug for IntoParIter<T> { argument
56 impl<T: Send> ParallelIterator for IntoParIter<T> { implementation
62 impl<T: Send> IndexedParallelIterator for IntoParIter<T> { implementation
/external/rust/android-crates-io/extra_versions/crates/hashbrown/src/external_trait_impls/rayon/
Dmap.rs235 pub struct IntoParIter<K, V, A: Allocator + Clone = Global> { struct
236 inner: RawIntoParIter<(K, V), A>, argument
239 impl<K: Send, V: Send, A: Allocator + Clone + Send> ParallelIterator for IntoParIter<K, V, A> { implementation
251 impl<K: fmt::Debug + Eq + Hash, V: fmt::Debug, A: Allocator + Clone> fmt::Debug
Dset.rs19 pub struct IntoParIter<T, A: Allocator + Clone = Global> { struct
20 inner: map::IntoParIter<T, (), A>, argument
23 impl<T: Send, A: Allocator + Clone + Send> ParallelIterator for IntoParIter<T, A> { implementation