Searched defs:IterMut (Results 1 – 3 of 3) sorted by relevance
| /linux/rust/kernel/ |
| H A D | rbtree.rs | 1127 pub struct IterMut<'a, K, V> { struct 1132 // SAFETY: The [`IterMut`] has exclusive access to both `K` and `V`, so it is sufficient to require… argument 1135 unsafe impl<'a, K: Send, V: Send> Send for IterMut<'a, K, V> {} implementation 1139 unsafe impl<'a, K: Sync, V: Sync> Sync for IterMut<'a, K, V> {} implementation 1141 impl<'a, K, V> Iterator for IterMut<'a, K, V> { implementation
|
| /linux/rust/syn/ |
| H A D | drops.rs | 38 impl<T> TrivialDrop for slice::IterMut<'_, T> {} implementation
|
| H A D | punctuated.rs | 863 pub struct IterMut<'a, T: 'a> { struct 864 inner: Box<NoDrop<dyn IterMutTrait<'a, T, Item = &'a mut T> + 'a>>, argument 891 impl<'a, T> Iterator for IterMut<'a, T> { implementation 903 impl<'a, T> DoubleEndedIterator for IterMut<'a, T> { implementation 909 impl<'a, T> ExactSizeIterator for IterMut<'a, T> { implementation
|