Struct aho_corasick::Match
[−]
[src]
pub struct Match { pub pati: usize, pub start: usize, pub end: usize, }
Records a match in the search text.
Fields
pati | The pattern index. This corresponds to the ordering in which the matched pattern was
added to the automaton, starting at |
start | The starting byte offset of the match in the search text. |
end | The ending byte offset of the match in the search text. (This can be re-captiulated with |