pub trait Parse<O = Self> {
// Required method
fn parse(
token: Token,
lexer: &mut Lexer,
errors: &mut Vec<Error>,
) -> Option<O>;
}Expand description
Required Methods§
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.