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

Required Methods

Implementors