Home
last modified time | relevance | path

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

/Linux-v6.1/rust/alloc/vec/
Dinto_iter.rs32 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 …]
Dmod.rs2644 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/
Dhelpers.rs47 pub(crate) fn expect_end(it: &mut token_stream::IntoIter) { in expect_end()