Trait stringzilla::Matcher
source · pub trait Matcher<'a> {
// Required methods
fn find(&self, haystack: &'a [u8]) -> Option<usize>;
fn needle_length(&self) -> usize;
fn skip_length(&self, include_overlaps: bool, is_reverse: bool) -> usize;
}