rusty_lr_core 3.39.1

core library for rusty_lr
Documentation
1
2
3
4
5
6
7
8
9
/// Error type for building grammar
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum BuildError<Term, NonTerm> {
    RuleNotFound(NonTerm),

    NoAugmented,

    __PhantomData__(Term),
}