Home
last modified time | relevance | path

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

/linux/rust/kernel/alloc/
H A Dkvec.rs948 type IntoIter = slice::Iter<'a, T>; typedef
950 fn into_iter(self) -> Self::IntoIter { in into_iter()
960 type IntoIter = slice::IterMut<'a, T>; typedef
962 fn into_iter(self) -> Self::IntoIter { in into_iter()
980 pub struct IntoIter<T, A: Allocator> { struct
988 impl<T, A> IntoIter<T, A> argument
1084 impl<T, A> Iterator for IntoIter<T, A> implementation
1143 impl<T, A> Drop for IntoIter<T, A> implementation
1163 type IntoIter = IntoIter<T, A>; typedef
1194 fn into_iter(self) -> Self::IntoIter { in into_iter()
/linux/rust/kernel/
H A Dlist.rs1046 type IntoIter = Iter<'a, T, ID>; typedef
1055 pub struct IntoIter<T: ?Sized + ListItem<ID>, const ID: u64 = 0> { struct
1059 impl<T: ?Sized + ListItem<ID>, const ID: u64> Iterator for IntoIter<T, ID> { implementation
1067 impl<T: ?Sized + ListItem<ID>, const ID: u64> FusedIterator for IntoIter<T, ID> {} implementation
1069 impl<T: ?Sized + ListItem<ID>, const ID: u64> DoubleEndedIterator for IntoIter<T, ID> { implementation
1076 type IntoIter = IntoIter<T, ID>; typedef
H A 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/rust/macros/
H A Dhelpers.rs67 pub(crate) fn expect_end(it: &mut token_stream::IntoIter) { in expect_end()