Converts a [`ParseError`] into an [`Error::Parser`].
(value: ParseError<&'a str, ContextError>)
| 134 | impl<'a> From<ParseError<&'a str, ContextError>> for crate::error::Error { |
| 135 | /// Converts a [`ParseError`] into an [`Error::Parser`]. |
| 136 | fn from(value: ParseError<&'a str, ContextError>) -> Self { |
| 137 | Self::Parser(value.to_string()) |
| 138 | } |
| 139 | } |
nothing calls this directly
no outgoing calls
no test coverage detected