Searched defs:Iter (Results 1 – 7 of 7) sorted by relevance
| /linux/rust/quote/ |
| H A D | runtime.rs | 102 type Iter: Iterator; typedef 104 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter); in quote_into_iter() 108 type Iter = T::Iter; typedef 110 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter() 116 type Iter = T::Iter; typedef 118 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter() 124 type Iter = slice::Iter<'q, T>; typedef 126 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter() 132 type Iter = slice::Iter<'q, T>; typedef 134 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter() [all …]
|
| /linux/rust/syn/ |
| H A D | error.rs | 449 pub struct Iter<'a> { struct 450 messages: slice::Iter<'a, ErrorMessage>, argument 453 impl<'a> Iterator for Iter<'a> { implementation
|
| H A D | punctuated.rs | 749 pub struct Iter<'a, T: 'a> { struct 750 inner: Box<NoDrop<dyn IterTrait<'a, T> + 'a>>, argument 777 impl<'a, T> Clone for Iter<'a, T> { implementation 785 impl<'a, T> Iterator for Iter<'a, T> { implementation 797 impl<'a, T> DoubleEndedIterator for Iter<'a, T> { implementation 803 impl<'a, T> ExactSizeIterator for Iter<'a, T> { implementation
|
| H A D | drops.rs | 37 impl<T> TrivialDrop for slice::Iter<'_, T> {} implementation
|
| /linux/rust/kernel/ |
| H A D | rbtree.rs | 1093 pub struct Iter<'a, K, V> { struct 1095 iter_raw: IterRaw<K, V>, argument 1098 // SAFETY: The [`Iter`] gives out immutable references to K and V, so it has the same argument 1100 unsafe impl<'a, K: Sync, V: Sync> Send for Iter<'a, K, V> {} implementation 1104 unsafe impl<'a, K: Sync, V: Sync> Sync for Iter<'a, K, V> {} implementation 1106 impl<'a, K, V> Iterator for Iter<'a, K, V> { implementation
|
| /linux/rust/kernel/alloc/ |
| H A D | kbox.rs | 705 type Iter<'a> typedef
|
| H A D | kvec.rs | 1054 type Iter<'a> typedef
|