(&self)
| 287 | } |
| 288 | |
| 289 | pub fn get_entry(&self) -> Option<(&K, Option<&V>)> { |
| 290 | unsafe { |
| 291 | self.node |
| 292 | .map(|node| (&node.as_ref().key, node.as_ref().val.as_ref())) |
| 293 | } |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | impl Color { |
nothing calls this directly
no outgoing calls
no test coverage detected