pub trait ValidateDoesNotContain {
// Required method
fn validate_does_not_contain(&self, needle: &str) -> bool;
}Required Methods§
fn validate_does_not_contain(&self, needle: &str) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".