pub trait Parser {
    fn parse(buffer: &[u8]) -> Result<Packet, ParseError>;
}

Required Methods

Implementors