Struct aho_corasick::Match
source · [−]pub struct Match { /* private fields */ }
Expand description
A representation of a match reported by an Aho-Corasick automaton.
A match has two essential pieces of information: the identifier of the pattern that matched, along with the start and end offsets of the match in the haystack.
Examples
Basic usage:
use aho_corasick::AhoCorasick;
let ac = AhoCorasick::new(&[
"foo", "bar", "baz",
]);
let mat = ac.find("xxx bar xxx").expect("should have a match");
assert_eq!(1, mat.pattern());
assert_eq!(4, mat.start());
assert_eq!(7, mat.end());
Implementations
Returns the identifier of the pattern that matched.
The identifier of a pattern is derived from the position in which it
was originally inserted into the corresponding automaton. The first
pattern has identifier 0
, and each subsequent pattern is 1
, 2
and so on.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Match
impl UnwindSafe for Match
Blanket Implementations
Mutably borrows from an owned value. Read more