Home
last modified time | relevance | path

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

/linux-6.6.21/rust/alloc/vec/
Dinto_iter.rs35 pub struct IntoIter< struct
52 impl<T: fmt::Debug, A: Allocator> fmt::Debug for IntoIter<T, A> { argument
58 impl<T, A: Allocator> IntoIter<T, A> { implementation
174 impl<T, A: Allocator> AsRef<[T]> for IntoIter<T, A> { implementation
181 unsafe impl<T: Send, A: Allocator + Send> Send for IntoIter<T, A> {} implementation
183 unsafe impl<T: Sync, A: Allocator + Sync> Sync for IntoIter<T, A> {} implementation
186 impl<T, A: Allocator> Iterator for IntoIter<T, A> { implementation
297 impl<T, A: Allocator> DoubleEndedIterator for IntoIter<T, A> { implementation
335 impl<T, A: Allocator> ExactSizeIterator for IntoIter<T, A> { implementation
342 impl<T, A: Allocator> FusedIterator for IntoIter<T, A> {} implementation
[all …]
Dmod.rs2948 type IntoIter = IntoIter<T, A>; typedef
2967 fn into_iter(self) -> Self::IntoIter { in into_iter()
2993 type IntoIter = slice::Iter<'a, T>; typedef
2995 fn into_iter(self) -> Self::IntoIter { in into_iter()
3003 type IntoIter = slice::IterMut<'a, T>; typedef
3005 fn into_iter(self) -> Self::IntoIter { in into_iter()
3184 pub fn splice<R, I>(&mut self, range: R, replace_with: I) -> Splice<'_, I::IntoIter, A> in splice()
/linux-6.6.21/rust/macros/
Dhelpers.rs67 pub(crate) fn expect_end(it: &mut token_stream::IntoIter) { in expect_end()