(&self, f: &mut fmt::Formatter<'_>)
| 24 | |
| 25 | impl fmt::Display for Node { |
| 26 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 27 | write!(f, "({}, {})", self.start, self.end) |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | impl Node { |
nothing calls this directly
no outgoing calls
no test coverage detected