pub trait Parse<'t> {
type Prec: Copy + Default;
// Required method
fn parse(p: &mut Parser<'t>, _level: Self::Prec) -> PResult<Self>
where Self: Sized;
}pub trait Parse<'t> {
type Prec: Copy + Default;
// Required method
fn parse(p: &mut Parser<'t>, _level: Self::Prec) -> PResult<Self>
where Self: Sized;
}