pub trait Needle {
    fn is_match(&self, haystack: &str) -> bool;
}

Required Methods

Implementations on Foreign Types

Implementors