Expand description
The components required to implement matchers.
Enums§
- Matcher
Result - The result of applying a
Matcher
on an actual value.
Traits§
- Matcher
- An interface for checking an arbitrary condition on a datum.
- Matcher
Base - Base trait for matchers. Any type implementing
Matcher
must implementMatcherBase
, but that should be done through the#[derive(MatcherBase)]
macro.