Home
last modified time | relevance | path

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

/linux/rust/kernel/
H A Dlist.rs650 pub struct Iter<'a, T: ?Sized + ListItem<ID>, const ID: u64 = 0> { struct
656 impl<'a, T: ?Sized + ListItem<ID>, const ID: u64> Iterator for Iter<'a, T, ID> { argument
1044 impl<'a, T: ?Sized + ListItem<ID>, const ID: u64> FusedIterator for Iter<'a, T, ID> {} implementation
H A Drbtree.rs943 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