(&mut self)
| 699 | use core::ops::DerefMut; |
| 700 | impl DerefMut for Node { |
| 701 | fn deref_mut(&mut self) -> &mut <Self as Deref>::Target { |
| 702 | &mut self.variant |
| 703 | } |
| 704 | } |
| 705 | |
| 706 | impl Node { |
nothing calls this directly
no outgoing calls
no test coverage detected