Struct regex_automata::nfa::thompson::range_trie::NextInsert

source ·
struct NextInsert {
    state_id: StateID,
    ranges: [Utf8Range; 4],
    len: u8,
}
Expand description

The next state to process during insertion and any remaining ranges that we want to add for a particular sequence of ranges. The first such instance is always the root state along with all ranges given.

Fields§

§state_id: StateID

The next state to begin inserting ranges. This state should be the state at which ranges[0] should be inserted.

§ranges: [Utf8Range; 4]

The ranges to insert. We used a fixed-size array here to avoid an allocation.

§len: u8

The number of valid ranges in the above array.

Implementations§

source§

impl NextInsert

source

fn new(state_id: StateID, ranges: &[Utf8Range]) -> NextInsert

Create the next item to visit. The given state ID should correspond to the state at which the first range in the given slice should be inserted. The slice given must not be empty and it must be no longer than 4.

source

fn push( trie: &mut RangeTrie, stack: &mut Vec<NextInsert>, ranges: &[Utf8Range], ) -> StateID

Push a new empty state to visit along with any remaining ranges that still need to be inserted. The ID of the new empty state is returned.

If ranges is empty, then no new state is created and FINAL is returned.

source

fn state_id(&self) -> StateID

Return the ID of the state to visit.

source

fn ranges(&self) -> &[Utf8Range]

Return the remaining ranges to insert.

Trait Implementations§

source§

impl Clone for NextInsert

source§

fn clone(&self) -> NextInsert

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for NextInsert

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.