pub trait ParseableWithUnknownSpan where
    Self: Sized + 'static, 
{ fn parse_with_unknown_span<'c, 'p, 'a, 's, 'f>(
        context: &ParsingContext<'c, 'p, 'a, 's, 'f>
    ) -> Result<(Self, ParseSpan<'a, 's, 'f>), ParserError>; }

Required Methods

Implementors