stringmatch

Trait StringMatchable

Source
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§

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.

Implementations on Foreign Types§

Source§

impl StringMatchable for &str

Source§

impl StringMatchable for String

Implementors§