Appends an error to the backtrace with the given input and error kind and returns self
(mut self, input: I, kind: BgeoParserErrorKind)
| 772 | |
| 773 | /// Appends an error to the backtrace with the given input and error kind and returns self |
| 774 | pub fn with_append(mut self, input: I, kind: BgeoParserErrorKind) -> Self { |
| 775 | self.backtrace.push((input, kind)); |
| 776 | self |
| 777 | } |
| 778 | |
| 779 | /// Appends a context message to the backtrace and return self |
| 780 | pub fn with_context<S: Into<Cow<'static, str>>>(self, input: I, ctx: S) -> Self { |
no outgoing calls
no test coverage detected