Struct parsell::impls::BoxableState [] [src]

pub struct BoxableState<P>(_);

Methods

impl<P> BoxableState<P>
[src]

fn new(parser: P) -> Self

Trait Implementations

impl<P: Debug> Debug for BoxableState<P>
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl<P, Ch, Str, Output> Boxable<Ch, Str, Output> for BoxableState<P> where P: Stateful<Ch, Str, Output>
[src]

fn more_boxable(&mut self, string: &mut Str) -> ParseResult<(), Output>

fn done_boxable(&mut self) -> Output

impl<P, Ch, Str> HasOutput<Ch, Str> for BoxableState<P> where P: HasOutput<Ch, Str>
[src]

type Output = P::Output

The type of the data being produced by the parser.