Searched refs:CursorMut (Results 1 – 1 of 1) sorted by relevance
| /linux/rust/kernel/ |
| H A D | rbtree.rs | 246 pub fn cursor_front_mut(&mut self) -> Option<CursorMut<'_, K, V>> { in cursor_front_mut() 253 CursorMut { in cursor_front_mut() 276 pub fn cursor_back_mut(&mut self) -> Option<CursorMut<'_, K, V>> { in cursor_back_mut() 283 CursorMut { in cursor_back_mut() 457 pub fn cursor_lower_bound_mut(&mut self, key: &K) -> Option<CursorMut<'_, K, V>> in cursor_lower_bound_mut() 466 CursorMut { in cursor_lower_bound_mut() 783 pub struct CursorMut<'a, K, V> { struct 890 unsafe impl<'a, K: Send, V: Send> Send for CursorMut<'a, K, V> {} implementation 894 unsafe impl<'a, K: Sync, V: Sync> Sync for CursorMut<'a, K, V> {} implementation 896 impl<'a, K, V> CursorMut<'a, K, V> { impl
|