pub trait Recoverable: Sized {
// Required method
fn error_placeholder(skipped_tokens: Token, range: SourceRange) -> Self;
}Required Methods§
fn error_placeholder(skipped_tokens: Token, range: SourceRange) -> Self
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.