Struct regex_automata::dfa::OverlappingState
source · [−]pub struct OverlappingState { /* private fields */ }
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 no 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.
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
sourceimpl 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
sourceimpl Clone for OverlappingState
impl Clone for OverlappingState
sourcefn clone(&self) -> OverlappingState
fn clone(&self) -> OverlappingState
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for OverlappingState
impl Debug for OverlappingState
sourceimpl PartialEq<OverlappingState> for OverlappingState
impl PartialEq<OverlappingState> for OverlappingState
sourcefn eq(&self, other: &OverlappingState) -> bool
fn eq(&self, other: &OverlappingState) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &OverlappingState) -> bool
fn ne(&self, other: &OverlappingState) -> bool
This method tests for !=
.
impl Eq for OverlappingState
impl StructuralEq for OverlappingState
impl StructuralPartialEq for OverlappingState
Auto Trait Implementations
impl RefUnwindSafe for OverlappingState
impl Send for OverlappingState
impl Sync for OverlappingState
impl Unpin for OverlappingState
impl UnwindSafe for OverlappingState
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
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.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more