[][src]Struct lalrpop_util::state_machine::Parser

pub struct Parser<D, I> where
    D: ParserDefinition,
    I: Iterator<Item = Result<TokenTriple<D>, ParseError<D>>>, 
{ /* fields omitted */ }

Methods

impl<D, I> Parser<D, I> where
    D: ParserDefinition,
    I: Iterator<Item = Result<TokenTriple<D>, ParseError<D>>>, 
[src]

pub fn drive(definition: D, tokens: I) -> ParseResult<D>
[src]

Auto Trait Implementations

impl<D, I> Send for Parser<D, I> where
    D: Send,
    I: Send,
    <D as ParserDefinition>::Location: Send,
    <D as ParserDefinition>::StateIndex: Send,
    <D as ParserDefinition>::Symbol: Send

impl<D, I> Sync for Parser<D, I> where
    D: Sync,
    I: Sync,
    <D as ParserDefinition>::Location: Sync,
    <D as ParserDefinition>::StateIndex: Sync,
    <D as ParserDefinition>::Symbol: Sync

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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