Trait galvanic_assert::Matcher [] [src]

pub trait Matcher<T> {
    fn check(&self, actual: T) -> MatchResult;
}

The trait which has to be implemented by all matchers.

Required Methods

Checks the passed value if it satisfies the Matcher.

Implementors