Home
last modified time | relevance | path

Searched defs:Iter (Results 1 – 7 of 7) sorted by relevance

/linux/rust/quote/
H A Druntime.rs102 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 Derror.rs449 pub struct Iter<'a> { struct
450 messages: slice::Iter<'a, ErrorMessage>, argument
453 impl<'a> Iterator for Iter<'a> { implementation
H A Dpunctuated.rs749 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 Ddrops.rs37 impl<T> TrivialDrop for slice::Iter<'_, T> {} implementation
/linux/rust/kernel/
H A Drbtree.rs1093 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 Dkbox.rs705 type Iter<'a> typedef
H A Dkvec.rs1054 type Iter<'a> typedef