(input: I, ctx: &'static str, other: Self)
| 827 | |
| 828 | impl<I> ContextError<I> for BgeoParserError<I> { |
| 829 | fn add_context(input: I, ctx: &'static str, other: Self) -> Self { |
| 830 | other.with_context(input, Cow::Borrowed(ctx)) |
| 831 | } |
| 832 | } |
| 833 | |
| 834 | impl<I> FromExternalError<I, BgeoParserErrorKind> for BgeoParserError<I> { |
nothing calls this directly
no test coverage detected