Struct rusty_lr::Parser

source ·
pub struct Parser<Term, NonTerm> {
    pub rules: Vec<ProductionRule<Term, NonTerm>>,
    pub states: Vec<State<Term, NonTerm>>,
}
Expand description

struct for Deterministic Finite Automaton (DFA).

It contains Vec of production rules and states.

Fields§

§rules: Vec<ProductionRule<Term, NonTerm>>§states: Vec<State<Term, NonTerm>>

Implementations§

source§

impl<Term, NonTerm> Parser<Term, NonTerm>

source

pub fn feed<'a>( &'a self, context: &mut Context, term: Term, ) -> Result<(), ParseError<'a, Term, NonTerm, u8, u8>>
where Term: Hash + Eq, NonTerm: Hash + Eq,

feed one terminal to parser, and update state stack

source

pub fn feed_callback<'a, C>( &'a self, context: &mut Context, callback: &mut C, term: Term, ) -> Result<(), ParseError<'a, Term, NonTerm, <C as Callback<Term, NonTerm>>::Error, u8>>
where C: Callback<Term, NonTerm>, Term: Hash + Eq, NonTerm: Hash + Eq,

feed one terminal to parser, and update state stack

source

pub fn begin(&self) -> Context

Auto Trait Implementations§

§

impl<Term, NonTerm> Freeze for Parser<Term, NonTerm>

§

impl<Term, NonTerm> RefUnwindSafe for Parser<Term, NonTerm>
where NonTerm: RefUnwindSafe, Term: RefUnwindSafe,

§

impl<Term, NonTerm> Send for Parser<Term, NonTerm>
where NonTerm: Send, Term: Send,

§

impl<Term, NonTerm> Sync for Parser<Term, NonTerm>
where NonTerm: Sync, Term: Sync,

§

impl<Term, NonTerm> Unpin for Parser<Term, NonTerm>
where NonTerm: Unpin, Term: Unpin,

§

impl<Term, NonTerm> UnwindSafe for Parser<Term, NonTerm>
where NonTerm: UnwindSafe, Term: UnwindSafe + RefUnwindSafe,

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, 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.