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

Required Methods

Implementors