pub trait ParserRecoverExt<'a, I>: DatexParserTrait<'a, Result<DatexExpression, I>>where
I: 'a + Into<ParseError>,{
// Provided method
fn recover_invalid(self) -> impl DatexParserTrait<'a, DatexExpression>
where Self: Sized { ... }
}Provided Methods§
fn recover_invalid(self) -> impl DatexParserTrait<'a, DatexExpression>where
Self: Sized,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.