pub trait Parseable where
Self: Sized + 'static, {
fn parse(
context: &ParsingContext<'_, '_, '_, '_, '_>
) -> Result<Self, ParserError>;
}
pub trait Parseable where
Self: Sized + 'static, {
fn parse(
context: &ParsingContext<'_, '_, '_, '_, '_>
) -> Result<Self, ParserError>;
}