Struct parsimonious::impls::MapStatefulParser [] [src]

pub struct MapStatefulParser<P, F>(_, _);

Trait Implementations

impl<P: Debug, F: Debug> Debug for MapStatefulParser<P, F>
[src]

Formats the value using the given formatter.

impl<P, F> Copy for MapStatefulParser<P, F> where
    P: Copy,
    F: Copy
[src]

impl<P, F> Clone for MapStatefulParser<P, F> where
    P: Clone,
    F: Copy
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<P, F, S, T> Stateful<S> for MapStatefulParser<P, F> where
    P: Stateful<S, Output = T>,
    F: Function<T>, 
[src]

The type of the data being produced by the parser.

Provides data to the parser. Read more

Tells the parser that it will not receive any more data. Read more

Make this parser boxable.