Struct aho_corasick::Match [−][src]
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
impl Match
[src]
pub fn pattern(&self) -> usize
[src]
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.
pub fn start(&self) -> usize
[src]
The starting position of the match.
pub fn end(&self) -> usize
[src]
The ending position of the match.
pub fn is_empty(&self) -> bool
[src]
Returns true if and only if this match is empty. That is, when
start() == end()
.
An empty match can only be returned when the empty string was among the patterns used to build the Aho-Corasick automaton.
Trait Implementations
impl Clone for Match
[src]
impl Debug for Match
[src]
impl Eq for Match
[src]
impl Hash for Match
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl PartialEq<Match> for Match
[src]
impl StructuralEq for Match
[src]
impl StructuralPartialEq for Match
[src]
Auto Trait Implementations
impl RefUnwindSafe for Match
impl Send for Match
impl Sync for Match
impl Unpin for Match
impl UnwindSafe for Match
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,