Trait BuildableMatcher

Source
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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§