pub struct OverlappingState { /* private fields */ }
dfa-search
and (crate features dfa-search
or dfa-onepass
) only.Expand description
Represents the current state of an overlapping search.
This is used for overlapping searches since they need to know something about the previous search. For example, when multiple patterns match at the same position, this state tracks the last reported pattern so that the next search knows whether to report another matching pattern or continue with the search at the next position. Additionally, it also tracks which state the last search call terminated in.
This type provides little introspection capabilities. The only thing a caller can do is construct it and pass it around to permit search routines to use it to track state, and also ask whether a match has been found.
Callers should always provide a fresh state constructed via
OverlappingState::start
when starting a new search. Reusing state from
a previous search may result in incorrect results.
Implementations§
source§impl OverlappingState
impl OverlappingState
sourcepub fn start() -> OverlappingState
pub fn start() -> OverlappingState
Create a new overlapping state that begins at the start state of any automaton.
Trait Implementations§
source§impl Clone for OverlappingState
impl Clone for OverlappingState
source§fn clone(&self) -> OverlappingState
fn clone(&self) -> OverlappingState
1.6.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for OverlappingState
impl Debug for OverlappingState
source§impl PartialEq for OverlappingState
impl PartialEq for OverlappingState
impl Eq for OverlappingState
impl StructuralPartialEq for OverlappingState
Auto Trait Implementations§
impl Freeze for OverlappingState
impl RefUnwindSafe for OverlappingState
impl Send for OverlappingState
impl Sync for OverlappingState
impl Unpin for OverlappingState
impl UnwindSafe for OverlappingState
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)