pub trait Parser<CMD>: Debug {
    fn parse(&self, input: &[u8], state: &SmtpContext) -> ParseResult<CMD>;
}

Required methods

Implementors