pub trait Matcher<T> {
// Required method
fn matches(&self, value: T) -> bool;
}Expand description
A matcher for results expected from a milter.
pub trait Matcher<T> {
// Required method
fn matches(&self, value: T) -> bool;
}A matcher for results expected from a milter.