pub trait Matches<T> {
// Required method
fn matches(&self, t: T) -> bool;
}Expand description
Tests values against a Matrix filter.
Implementations apply the allow and deny lists relevant to the value being tested. A value matches only when every applicable filter condition accepts it.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".