perplex_runtime

Enum Symbol

Source
pub enum Symbol<T, NT> {
    Terminal(T),
    Nonterminal(NT),
}
Expand description

A symbol on the parse stack.

Generic over the type of terminal T and nonterminal NT.

Variants§

§

Terminal(T)

§

Nonterminal(NT)

Implementations§

Source§

impl<T, NT> Symbol<T, NT>

Source

pub fn unwrap_terminal(self) -> T

Return the terminal wrapped in this symbol.

Panics if the symbol is not a terminal.

Source

pub fn unwrap_nonterminal(self) -> NT

Return the nonterminal wrapped in this symbol.

Panics if the symbol is not a nonterminal.

Auto Trait Implementations§

§

impl<T, NT> Freeze for Symbol<T, NT>
where T: Freeze, NT: Freeze,

§

impl<T, NT> RefUnwindSafe for Symbol<T, NT>

§

impl<T, NT> Send for Symbol<T, NT>
where T: Send, NT: Send,

§

impl<T, NT> Sync for Symbol<T, NT>
where T: Sync, NT: Sync,

§

impl<T, NT> Unpin for Symbol<T, NT>
where T: Unpin, NT: Unpin,

§

impl<T, NT> UnwindSafe for Symbol<T, NT>
where T: UnwindSafe, NT: 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>,

Source§

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

Source§

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.