(&self, f: &mut fmt::Formatter<'_>)
| 22 | |
| 23 | impl fmt::Display for ParseError { |
| 24 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 25 | write!(f, "Parse error at {}: {}", self.span, self.message) |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | impl std::error::Error for ParseError {} |
nothing calls this directly
no outgoing calls
no test coverage detected