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

Required Methods

Implementations on Foreign Types

Implementors