Searched defs:Iter (Results 1 – 4 of 4) sorted by relevance
/linux/rust/kernel/ |
H A D | list.rs | 650 pub struct Iter<'a, T: ?Sized + ListItem<ID>, const ID: u64 = 0> { global() struct 656 impl<'a, T: ?Sized + ListItem<ID>, const ID: u64> Iterator for Iter<'a, T, ID> { global() implementation 1044 impl<'a, T: ?Sized + ListItem<ID>, const ID: u64> FusedIterator for Iter<'a, T, ID> {} global() implementation
|
H A D | rbtree.rs | 943 pub struct Iter<'a, K, V> { struct 945 iter_raw: IterRaw<K, V>, argument 948 // SAFETY: The [`Iter`] gives out immutable references to K and V, so it has the same argument 950 unsafe impl<'a, K: Sync, V: Sync> Send for Iter<'a, K, V> {} implementation 954 unsafe impl<'a, K: Sync, V: Sync> Sync for Iter<'a, K, V> {} implementation 956 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
|