pub trait Parser {
    fn parse<'a>(buf: &'a [u8]) -> Result<(&'a [u8], usize), ParseError>;
}

Required methods

Implementors