Trait oxidize::matchers::Matcher [] [src]

pub trait Matcher<Lhs> {
    fn matches(&self, lhs: &Lhs) -> bool;
    fn fail_msg(&self, lhs: &Lhs) -> String;
    fn negated_fail_msg(&self, lhs: &Lhs) -> String;
}

Required Methods

Implementors