Home
last modified time | relevance | path

Searched defs:IntoIter (Results 1 – 25 of 152) sorted by relevance

1234567

/external/rust/crates/bytes/src/buf/
Diter.rs24 pub struct IntoIter<T> { struct
28 impl<T> IntoIter<T> { argument
110 impl<T: Buf> Iterator for IntoIter<T> { implementation
130 impl<T: Buf> ExactSizeIterator for IntoIter<T> {} implementation
/external/rust/crates/futures-util/src/stream/
Dselect_all.rs165 type IntoIter = IntoIter<St>; typedef
167 fn into_iter(self) -> Self::IntoIter { in into_iter()
174 type IntoIter = Iter<'a, St>; typedef
176 fn into_iter(self) -> Self::IntoIter { in into_iter()
183 type IntoIter = IterMut<'a, St>; typedef
185 fn into_iter(self) -> Self::IntoIter { in into_iter()
200 pub struct IntoIter<St: Unpin>(futures_unordered::IntoIter<StreamFuture<St>>); struct
238 impl<St: Stream + Unpin> Iterator for IntoIter<St> { implementation
254 impl<St: Stream + Unpin> ExactSizeIterator for IntoIter<St> {} implementation
/external/rust/crates/walkdir/src/
Dlib.rs515 type IntoIter = IntoIter; typedef
517 fn into_iter(self) -> IntoIter { in into_iter()
543 pub struct IntoIter { struct
545 opts: WalkDirOptions,
550 start: Option<PathBuf>,
556 stack_list: Vec<DirList>,
563 stack_path: Vec<Ancestor>,
568 oldest_opened: usize,
571 depth: usize,
575 deferred_dirs: Vec<DirEntry>,
[all …]
/external/rust/crates/futures-util/src/stream/futures_unordered/
Diter.rs35 pub struct IntoIter<Fut: Unpin> { struct
40 impl<Fut: Unpin> Iterator for IntoIter<Fut> { argument
75 impl<Fut: Unpin> ExactSizeIterator for IntoIter<Fut> {} implementation
171 unsafe impl<Fut: Send + Unpin> Send for IntoIter<Fut> {} implementation
172 unsafe impl<Fut: Sync + Unpin> Sync for IntoIter<Fut> {} implementation
/external/rust/crates/rayon/src/
Doption.rs22 pub struct IntoIter<T: Send> { struct
28 type Iter = IntoIter<T>; argument
35 impl<T: Send> ParallelIterator for IntoIter<T> { implementation
50 impl<T: Send> IndexedParallelIterator for IntoIter<T> { implementation
152 type IntoIter = std::option::IntoIter<T>; typedef
154 fn into_iter(self) -> Self::IntoIter { in into_iter()
Darray.rs43 pub struct IntoIter<T: Send, const N: usize> { struct
47 impl<T: Send, const N: usize> ParallelIterator for IntoIter<T, N> { argument
62 impl<T: Send, const N: usize> IndexedParallelIterator for IntoIter<T, N> { implementation
Dvec.rs38 pub struct IntoIter<T: Send> { struct
44 type Iter = IntoIter<T>; argument
51 impl<T: Send> ParallelIterator for IntoIter<T> { implementation
66 impl<T: Send> IndexedParallelIterator for IntoIter<T> { implementation
208 type IntoIter = SliceDrain<'data, T>; typedef
210 fn into_iter(mut self) -> Self::IntoIter { in into_iter()
/external/rust/crates/openssl/src/
Dstack.rs77 type IntoIter = IntoIter<T>; typedef
136 pub struct IntoIter<T: Stackable> { struct
141 impl<T: Stackable> Drop for IntoIter<T> { argument
152 impl<T: Stackable> Iterator for IntoIter<T> { implementation
168 impl<T: Stackable> DoubleEndedIterator for IntoIter<T> { implementation
178 impl<T: Stackable> ExactSizeIterator for IntoIter<T> {} implementation
280 type IntoIter = Iter<'a, T>; typedef
289 type IntoIter = IterMut<'a, T>; typedef
298 type IntoIter = Iter<'a, T>; typedef
307 type IntoIter = IterMut<'a, T>; typedef
/external/rust/crates/clap/src/util/
Dflat_set.rs75 type IntoIter = std::vec::IntoIter<T>; typedef
77 fn into_iter(self) -> Self::IntoIter { in into_iter()
84 type IntoIter = std::slice::Iter<'s, T>; typedef
86 fn into_iter(self) -> Self::IntoIter { in into_iter()
/external/rust/crates/plotters/src/element/
Dcomposable.rs72 type IntoIter = Once<&'a Coord>; typedef
73 fn point_iter(self) -> Self::IntoIter { in point_iter()
105 type IntoIter = Once<&'b Coord>; typedef
106 fn point_iter(self) -> Self::IntoIter { in point_iter()
178 type IntoIter = Once<&'b Coord>; typedef
179 fn point_iter(self) -> Self::IntoIter { in point_iter()
/external/rust/crates/syn/src/
Derror.rs374 type IntoIter = IntoIter; typedef
376 fn into_iter(self) -> Self::IntoIter { in into_iter()
383 pub struct IntoIter { struct
384 messages: vec::IntoIter<ErrorMessage>, argument
387 impl Iterator for IntoIter { implementation
399 type IntoIter = Iter<'a>; typedef
401 fn into_iter(self) -> Self::IntoIter { in into_iter()
Ddata.rs119 type IntoIter = punctuated::IntoIter<Field>; typedef
121 fn into_iter(self) -> Self::IntoIter { in into_iter()
132 type IntoIter = punctuated::Iter<'a, Field>; typedef
134 fn into_iter(self) -> Self::IntoIter { in into_iter()
141 type IntoIter = punctuated::IterMut<'a, Field>; typedef
143 fn into_iter(self) -> Self::IntoIter { in into_iter()
/external/rust/crates/rayon/src/collections/
Dbtree_set.rs14 pub struct IntoIter<T: Ord + Send> { struct
15 inner: vec::IntoIter<T>, argument
Dlinked_list.rs14 pub struct IntoIter<T: Send> { struct
15 inner: vec::IntoIter<T>, argument
Dbtree_map.rs14 pub struct IntoIter<K: Ord + Send, V: Send> { struct
15 inner: vec::IntoIter<(K, V)>, argument
Dhash_set.rs16 pub struct IntoIter<T: Hash + Eq + Send> { struct
17 inner: vec::IntoIter<T>, argument
Dhash_map.rs16 pub struct IntoIter<K: Hash + Eq + Send, V: Send> { struct
17 inner: vec::IntoIter<(K, V)>, argument
/external/rust/crates/weak-table/src/
Dptr_weak_hash_set.rs176 pub struct IntoIter<T>(base::IntoIter<ByPtr<T>, ()>); struct
178 impl<T: WeakElement> Iterator for IntoIter<T> { implementation
278 type IntoIter = IntoIter<T>; typedef
283 fn into_iter(self) -> Self::IntoIter { in into_iter()
292 type IntoIter = Iter<'a, T>; typedef
297 fn into_iter(self) -> Self::IntoIter { in into_iter()
Dweak_hash_set.rs205 pub struct IntoIter<T>(base::IntoIter<T, ()>); struct
207 impl<T: WeakElement> Iterator for IntoIter<T> { implementation
296 type IntoIter = IntoIter<T>; typedef
301 fn into_iter(self) -> Self::IntoIter { in into_iter()
308 type IntoIter = Iter<'a, T>; typedef
313 fn into_iter(self) -> Self::IntoIter { in into_iter()
/external/rust/crates/thread_local/src/
Dlib.rs320 type IntoIter = IntoIter<T>; typedef
332 type IntoIter = Iter<'a, T>; typedef
334 fn into_iter(self) -> Self::IntoIter { in into_iter()
341 type IntoIter = IterMut<'a, T>; typedef
498 pub struct IntoIter<T: Send> { struct
503 impl<T: Send> Iterator for IntoIter<T> { argument
518 impl<T: Send> ExactSizeIterator for IntoIter<T> {} implementation
519 impl<T: Send> FusedIterator for IntoIter<T> {} implementation
/external/rust/crates/rayon/src/slice/
Drchunks.rs69 type IntoIter = ::std::slice::RChunks<'data, T>; typedef
71 fn into_iter(self) -> Self::IntoIter { in into_iter()
169 type IntoIter = ::std::slice::RChunksExact<'data, T>; typedef
171 fn into_iter(self) -> Self::IntoIter { in into_iter()
249 type IntoIter = ::std::slice::RChunksMut<'data, T>; typedef
251 fn into_iter(self) -> Self::IntoIter { in into_iter()
366 type IntoIter = ::std::slice::RChunksExactMut<'data, T>; typedef
368 fn into_iter(self) -> Self::IntoIter { in into_iter()
Dchunks.rs70 type IntoIter = ::std::slice::Chunks<'data, T>; typedef
72 fn into_iter(self) -> Self::IntoIter { in into_iter()
171 type IntoIter = ::std::slice::ChunksExact<'data, T>; typedef
173 fn into_iter(self) -> Self::IntoIter { in into_iter()
251 type IntoIter = ::std::slice::ChunksMut<'data, T>; typedef
253 fn into_iter(self) -> Self::IntoIter { in into_iter()
369 type IntoIter = ::std::slice::ChunksExactMut<'data, T>; typedef
371 fn into_iter(self) -> Self::IntoIter { in into_iter()
/external/rust/crates/slab/src/
Dlib.rs180 pub struct IntoIter<T> { struct
181 entries: iter::Enumerate<vec::IntoIter<Entry<T>>>, argument
182 len: usize,
1209 type IntoIter = IntoIter<T>; typedef
1221 type IntoIter = Iter<'a, T>; typedef
1230 type IntoIter = IterMut<'a, T>; typedef
1298 impl<T> fmt::Debug for IntoIter<T> implementation
1399 impl<T> Iterator for IntoIter<T> { implementation
1419 impl<T> DoubleEndedIterator for IntoIter<T> { implementation
1433 impl<T> ExactSizeIterator for IntoIter<T> { implementation
[all …]
/external/rust/crates/lru-cache/src/
Dlib.rs323 type IntoIter = IntoIter<K, V>; typedef
332 type IntoIter = Iter<'a, K, V>; typedef
338 type IntoIter = IterMut<'a, K, V>; typedef
366 pub struct IntoIter<K, V>(linked_hash_map::IntoIter<K, V>); struct
368 impl<K, V> Iterator for IntoIter<K, V> { implementation
380 impl<K, V> DoubleEndedIterator for IntoIter<K, V> { implementation
386 impl<K, V> ExactSizeIterator for IntoIter<K, V> { implementation
/external/rust/crates/regex-automata/src/
Dsparse_set.rs56 type IntoIter = slice::Iter<'a, usize>; typedef
57 fn into_iter(self) -> Self::IntoIter { in into_iter()

1234567