pub trait StringMatchable: Into<StringMatch> {
// Provided methods
fn match_case_sensitive(self) -> StringMatch { ... }
fn match_case_insensitive(self) -> StringMatch { ... }
fn match_full(self) -> StringMatch { ... }
fn match_word(self) -> StringMatch { ... }
fn match_partial(self) -> StringMatch { ... }
}
Provided Methods§
fn match_case_sensitive(self) -> StringMatch
fn match_case_insensitive(self) -> StringMatch
fn match_full(self) -> StringMatch
fn match_word(self) -> StringMatch
fn match_partial(self) -> StringMatch
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.