Trait earley::Production [] [src]

pub trait Production<T> {
    fn get_name(&self) -> &'static str;
    fn get_tokens(&self) -> &[Token];
    fn perform<'a>(&self, result: Vec<Value<'a, T>>) -> T;
}

Required Methods

Trait Implementations

impl<'a, T> PartialEq for &'a Production<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'a, T> Eq for &'a Production<T>
[src]

Implementors