pub trait ParseV1 {
// Required method
fn parse_v1<F, O>(&mut self, f: F) -> PResult<O>
where for<'a> F: FnOnce(&mut Parser<'a>) -> PResult<O>;
}
Required Methods§
Object Safety§
This trait is not object safe.
pub trait ParseV1 {
// Required method
fn parse_v1<F, O>(&mut self, f: F) -> PResult<O>
where for<'a> F: FnOnce(&mut Parser<'a>) -> PResult<O>;
}