Trait parser_pda::parser_pda::LittleParserTrait[][src]

pub trait LittleParserTrait {
    type StateItem: PartialEq + Clone + Copy;
    type SignalItem: PartialEq;
    type DataItem;
    type StackSymbolItem: PartialEq;
    fn signal(&mut self, signal: &Self::SignalItem);
fn state(&self) -> &Self::StateItem;
fn data(&self) -> &<Self as LittleParserTrait>::DataItem;
fn data_mut(&mut self) -> &mut <Self as LittleParserTrait>::DataItem; }

Associated Types

Required methods

Implementors