(&mut self, v: Color)
| 184 | } |
| 185 | |
| 186 | pub fn set_color(&mut self, v: Color) { |
| 187 | if let Some(mut node) = self.node { |
| 188 | unsafe { node.as_mut().color = v } |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | pub fn copy_entry(&mut self, src: NonNull<Node<K, V>>) { |
| 193 | if let Some(mut node) = self.node { |
no outgoing calls
no test coverage detected