Struct gramatica::State

source ·
pub struct State<T> {
    pub rule: usize,
    pub left: usize,
    pub right: Vec<usize>,
    pub position: usize,
    pub original_set: usize,
    pub kind: EarleyKind,
    pub values: Vec<T>,
    pub computed_value: Option<T>,
    pub ambiguity_info: AmbiguityInfo<T>,
}

Fields§

§rule: usize

The associate rule to this state.

§left: usize

Token in the left.

§right: Vec<usize>

Tokens in the right.

§position: usize

The state boundary. I.e., number of tokens in the right already processed. Equals right.len() when already processed.

§original_set: usize

The state set from where this state was predicted.

§kind: EarleyKind

A record of which produced the state and used to compute the final value.

§values: Vec<T>§computed_value: Option<T>

When we have a computed value it is stored here.

§ambiguity_info: AmbiguityInfo<T>

Stores information about ambiguities when they happen.

Implementations§

source§

impl<T: Clone + Default> State<T>

source

pub fn finished(&self) -> bool

Whether all tokens in the rule has been processed.

source

pub fn next(&self) -> usize

Get the next token in the rule, unchecked.

source

pub fn try_next(&self) -> Option<usize>

Get the next token in the rule. But checking if finished.

source

pub fn advance(&self) -> State<T>

Creates a copy state pointing to the next token in the rule.

source§

impl<T: Default> State<T>

source

pub fn new( rule: usize, left: usize, right: Vec<usize>, set: usize, kind: EarleyKind ) -> State<T>

Trait Implementations§

source§

impl<T: Clone> Clone for State<T>

source§

fn clone(&self) -> State<T>

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<T: Debug> Debug for State<T>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for State<T>where T: RefUnwindSafe,

§

impl<T> Send for State<T>where T: Send,

§

impl<T> Sync for State<T>where T: Sync,

§

impl<T> Unpin for State<T>where T: Unpin,

§

impl<T> UnwindSafe for State<T>where T: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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 Twhere 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.