Enum parsimonious::ParseResult [] [src]

pub enum ParseResult<P, S> where
    P: Stateful<S>, 
{ Done(S, P::Output), Continue(S, P), }

The result of a parse.

Variants

The parse is finished.

The parse can continue.

Methods

impl<P, S> ParseResult<P, S> where
    P: Stateful<S>, 
[src]

Apply a function the the Continue branch of a parse result.