pub trait Parse {
    fn parse(parser: &mut Parser<'_, '_>) -> ParseResult<Self>
    where
        Self: Sized
; }

Required Methods

Implementations on Foreign Types

Implementors