pub trait GrammarSymbol: Debug + PartialEq {
    // Required method
    fn is_eps(&self) -> bool;
}
Expand description

A common trait that all symbols should impl, the symbols and impl are generated. You don’t need to impl it in your code.

Required Methods§

source

fn is_eps(&self) -> bool

Object Safety§

This trait is not object safe.

Implementors§