Home
last modified time | relevance | path

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

/linux-6.14.4/rust/kernel/
Dlist.rs540 pub struct Iter<'a, T: ?Sized + ListItem<ID>, const ID: u64 = 0> { struct
546 impl<'a, T: ?Sized + ListItem<ID>, const ID: u64> Iterator for Iter<'a, T, ID> { argument
648 impl<'a, T: ?Sized + ListItem<ID>, const ID: u64> FusedIterator for Iter<'a, T, ID> {} implementation
Drbtree.rs946 pub struct Iter<'a, K, V> { struct
948 iter_raw: IterRaw<K, V>, argument
951 // SAFETY: The [`Iter`] gives out immutable references to K and V, so it has the same argument
953 unsafe impl<'a, K: Sync, V: Sync> Send for Iter<'a, K, V> {} implementation
957 unsafe impl<'a, K: Sync, V: Sync> Sync for Iter<'a, K, V> {} implementation
959 impl<'a, K, V> Iterator for Iter<'a, K, V> { implementation