Home
last modified time | relevance | path

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

/linux-6.15/rust/kernel/alloc/
Dkvec.rs658 type IntoIter = slice::Iter<'a, T>; typedef
660 fn into_iter(self) -> Self::IntoIter { in into_iter()
670 type IntoIter = slice::IterMut<'a, T>; typedef
672 fn into_iter(self) -> Self::IntoIter { in into_iter()
690 pub struct IntoIter<T, A: Allocator> { struct
698 impl<T, A> IntoIter<T, A> argument
793 impl<T, A> Iterator for IntoIter<T, A> implementation
852 impl<T, A> Drop for IntoIter<T, A> implementation
872 type IntoIter = IntoIter<T, A>; typedef
903 fn into_iter(self) -> Self::IntoIter { in into_iter()
/linux-6.15/rust/kernel/
Dlist.rs941 type IntoIter = Iter<'a, T, ID>; typedef
950 pub struct IntoIter<T: ?Sized + ListItem<ID>, const ID: u64 = 0> { struct
954 impl<T: ?Sized + ListItem<ID>, const ID: u64> Iterator for IntoIter<T, ID> { argument
962 impl<T: ?Sized + ListItem<ID>, const ID: u64> FusedIterator for IntoIter<T, ID> {} implementation
964 impl<T: ?Sized + ListItem<ID>, const ID: u64> DoubleEndedIterator for IntoIter<T, ID> { implementation
971 type IntoIter = IntoIter<T, ID>; typedef
Drbtree.rs936 type IntoIter = Iter<'a, K, V>; typedef
938 fn into_iter(self) -> Self::IntoIter { in into_iter()
970 type IntoIter = IterMut<'a, K, V>; typedef
972 fn into_iter(self) -> Self::IntoIter { in into_iter()
/linux-6.15/rust/macros/
Dhelpers.rs67 pub(crate) fn expect_end(it: &mut token_stream::IntoIter) { in expect_end()