[][src]Struct kg_lang::Grammar

pub struct Grammar { /* fields omitted */ }

Methods

impl Grammar[src]

pub fn modes(&self) -> &Vec<Mode>[src]

pub fn mode(&self, index: usize) -> &Mode[src]

pub fn channels(&self) -> &Vec<Channel>[src]

pub fn channel(&self, index: usize) -> &Channel[src]

pub fn terminals(&self) -> &Vec<Lexeme>[src]

pub fn terminal(&self, index: usize) -> &Lexeme[src]

pub fn productions(&self) -> &Vec<Production>[src]

pub fn production(&self, index: usize) -> &Production[src]

pub fn rules(&self) -> &Vec<Rule>[src]

pub fn rule(&self, index: usize) -> &Rule[src]

pub fn globals(&self) -> &str[src]

pub fn strict_mode(&self) -> bool[src]

Trait Implementations

impl Display for Grammar[src]

impl Debug for Grammar[src]

Auto Trait Implementations

impl !Sync for Grammar

impl !Send for Grammar

impl Unpin for Grammar

impl !RefUnwindSafe for Grammar

impl !UnwindSafe for Grammar

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]