pub trait BuildableMatcher<TypeEnum> {
    // Required method
    fn new() -> Matcher<TypeEnum>;
}
Expand description

A Matcher is buildable without external data

Required Methods§

source

fn new() -> Matcher<TypeEnum>

Build a new Matcher instance

Implementors§