Struct parsell::impls::BufferedState [] [src]

pub struct BufferedState<P>(_, _);

Trait Implementations

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

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

Formats the value using the given formatter.

impl<P: Clone> Clone for BufferedState<P>
[src]

fn clone(&self) -> BufferedState<P>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl<'a, P> Stateful<charChars<'a>, Cow<'a, str>> for BufferedState<P> where P: StatefulInfer<charChars<'a>>
[src]

fn more(self, string: &mut Chars<'a>) -> ParseResult<Self, Cow<'a, str>>

Provides data to the parser. Read more

fn done(self) -> Cow<'a, str>

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

fn last(self, string: &mut Str) -> Output where Self: Sized

Provides the last data to the parser. Read more

impl<'a, P> HasOutput<charChars<'a>> for BufferedState<P> where P: HasOutput<charChars<'a>>
[src]

type Output = Cow<'a, str>

The type of the data being produced by the parser.