Struct lrpar::CTParser

source ·
pub struct CTParser<StorageT = u32>
where StorageT: Eq + Hash,
{ /* private fields */ }
Expand description

An interface to the result of CTParserBuilder::build().

Implementations§

source§

impl<StorageT> CTParser<StorageT>
where StorageT: 'static + Debug + Hash + PrimInt + Unsigned, usize: AsPrimitive<StorageT>,

source

pub fn regenerated(&self) -> bool

Returns true if this compile-time parser was regenerated or false if it was not.

source

pub fn token_map(&self) -> &HashMap<String, StorageT>

Returns a HashMap from lexeme string types to numeric types (e.g. INT: 2), suitable for handing to a lexer to coordinate the IDs of lexer and parser.

source

pub fn conflicts( &self, _: UnstableApi ) -> Option<(&YaccGrammar<StorageT>, &StateGraph<StorageT>, &StateTable<StorageT>, &Conflicts<StorageT>)>

If there are any conflicts in the grammar, return a tuple which allows users to inspect and pretty print them; otherwise returns None. If the grammar was not regenerated, this will always return None, even if the grammar actually has conflicts.

Note: The conflicts feature is currently unstable and may change in the future.

Auto Trait Implementations§

§

impl<StorageT> RefUnwindSafe for CTParser<StorageT>
where StorageT: RefUnwindSafe,

§

impl<StorageT> Send for CTParser<StorageT>
where StorageT: Send,

§

impl<StorageT> Sync for CTParser<StorageT>
where StorageT: Sync,

§

impl<StorageT> Unpin for CTParser<StorageT>
where StorageT: Unpin,

§

impl<StorageT> UnwindSafe for CTParser<StorageT>
where StorageT: UnwindSafe,

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.