Home
last modified time | relevance | path

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

/linux/rust/kernel/
H A 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