Trait nom::FindSubstring[][src]

pub trait FindSubstring<T> {
    fn find_substring(&self, substr: T) -> Option<usize>;
}
Expand description

Look for a substring in self

Required methods

Returns the byte position of the substring if it is found

Implementations on Foreign Types

Implementors