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
sourceimpl Match
impl Match
Trait Implementations
impl Eq for Match
impl StructuralEq for Match
impl StructuralPartialEq for Match
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more