Trait jetscii::DirectSearch
[−]
[src]
pub unsafe trait DirectSearch {
fn find(&self, haystack: &str) -> Option<usize>;
fn len(&self) -> usize;
}Types that return the index of the next match.
Required Methods
Implementors
impl<F> DirectSearch for AsciiCharsWithFallback<F> where F: Fn(u8) -> boolimpl<'a> DirectSearch for Substring<'a>