Searched defs:IntoIter (Results 1 – 4 of 4) sorted by relevance
/linux/rust/kernel/alloc/ |
H A D | kvec.rs | 1001 type IntoIter = slice::Iter<'a, T>; typedef 1003 fn into_iter(self) -> Self::IntoIter { in into_iter() 1013 type IntoIter = slice::IterMut<'a, T>; typedef 1015 fn into_iter(self) -> Self::IntoIter { in into_iter() 1033 pub struct IntoIter<T, A: Allocator> { struct 1041 impl<T, A> IntoIter<T, A> argument 1137 impl<T, A> Iterator for IntoIter<T, A> implementation 1196 impl<T, A> Drop for IntoIter<T, A> implementation 1216 type IntoIter = IntoIter<T, A>; typedef 1247 fn into_iter(self) -> Self::IntoIter { in into_iter()
|
/linux/rust/kernel/ |
H A D | list.rs | 1047 type IntoIter = Iter<'a, T, ID>; typedef 1056 pub struct IntoIter<T: ?Sized + ListItem<ID>, const ID: u64 = 0> { struct 1060 impl<T: ?Sized + ListItem<ID>, const ID: u64> Iterator for IntoIter<T, ID> { argument 1068 impl<T: ?Sized + ListItem<ID>, const ID: u64> FusedIterator for IntoIter<T, ID> {} implementation 1070 impl<T: ?Sized + ListItem<ID>, const ID: u64> DoubleEndedIterator for IntoIter<T, ID> { implementation 1077 type IntoIter = IntoIter<T, ID>; typedef
|
H A D | rbtree.rs | 933 type IntoIter = Iter<'a, K, V>; typedef 935 fn into_iter(self) -> Self::IntoIter { in into_iter() 967 type IntoIter = IterMut<'a, K, V>; typedef 969 fn into_iter(self) -> Self::IntoIter { in into_iter()
|
/linux/rust/macros/ |
H A D | helpers.rs | 67 pub(crate) fn expect_end(it: &mut token_stream::IntoIter) { in expect_end()
|