Searched defs:IterMut (Results 1 – 1 of 1) sorted by relevance
/linux-6.12.1/rust/kernel/ |
D | rbtree.rs | 978 pub struct IterMut<'a, K, V> { struct 983 // SAFETY: The [`IterMut`] has exclusive access to both `K` and `V`, so it is sufficient to require… argument 986 unsafe impl<'a, K: Send, V: Send> Send for IterMut<'a, K, V> {} implementation 990 unsafe impl<'a, K: Sync, V: Sync> Sync for IterMut<'a, K, V> {} implementation 992 impl<'a, K, V> Iterator for IterMut<'a, K, V> { implementation
|