(&self, pool: &'a mut NodePool<MapTypes<K, V>>)
| 358 | } |
| 359 | |
| 360 | fn value_mut<'a>(&self, pool: &'a mut NodePool<MapTypes<K, V>>) -> Option<&'a mut V> { |
| 361 | self.path |
| 362 | .leaf_pos() |
| 363 | .and_then(move |(node, entry)| pool[node].unwrap_leaf_mut().1.get_mut(entry)) |
| 364 | } |
| 365 | |
| 366 | fn goto( |
| 367 | &mut self, |
no test coverage detected