pub trait Partitioner: Debug {
// Required method
fn test_matches(&mut self, test_name: &str) -> bool;
}Expand description
Represents an individual partitioner, typically scoped to a test binary.
Required Methods§
Sourcefn test_matches(&mut self, test_name: &str) -> bool
fn test_matches(&mut self, test_name: &str) -> bool
Returns true if the given test name matches the partition.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".