pub trait MatchCondition: Send + 'static {
// Required method
fn match_cond(&mut self, buf: &[u8]) -> Result<usize, usize>;
}
pub trait MatchCondition: Send + 'static {
// Required method
fn match_cond(&mut self, buf: &[u8]) -> Result<usize, usize>;
}