pub trait LogMatcher: Send + Sync {
// Required method
fn matches(&self, log: &Log) -> bool;
}Expand description
Local log predicate.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".