Searched defs:IntoIter (Results 1 – 3 of 3) sorted by relevance
| /Linux-v6.1/rust/alloc/vec/ |
| D | into_iter.rs | 32 pub struct IntoIter< struct 47 impl<T: fmt::Debug, A: Allocator> fmt::Debug for IntoIter<T, A> { argument 53 impl<T, A: Allocator> IntoIter<T, A> { impl 136 impl<T, A: Allocator> AsRef<[T]> for IntoIter<T, A> { implementation 143 unsafe impl<T: Send, A: Allocator + Send> Send for IntoIter<T, A> {} implementation 145 unsafe impl<T: Sync, A: Allocator + Sync> Sync for IntoIter<T, A> {} implementation 148 impl<T, A: Allocator> Iterator for IntoIter<T, A> { implementation 228 impl<T, A: Allocator> DoubleEndedIterator for IntoIter<T, A> { implementation 271 impl<T, A: Allocator> ExactSizeIterator for IntoIter<T, A> { implementation 278 impl<T, A: Allocator> FusedIterator for IntoIter<T, A> {} implementation [all …]
|
| D | mod.rs | 2644 type IntoIter = IntoIter<T, A>; typedef 2686 type IntoIter = slice::Iter<'a, T>; typedef 2696 type IntoIter = slice::IterMut<'a, T>; typedef 2786 pub fn splice<R, I>(&mut self, range: R, replace_with: I) -> Splice<'_, I::IntoIter, A> in splice()
|
| /Linux-v6.1/rust/macros/ |
| D | helpers.rs | 47 pub(crate) fn expect_end(it: &mut token_stream::IntoIter) { in expect_end()
|