Enum parsell::impls::CharacterState [] [src]

pub enum CharacterState {}

Trait Implementations

impl Debug for CharacterState
[src]

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

Formats the value using the given formatter.

impl Clone for CharacterState
[src]

fn clone(&self) -> CharacterState

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 Copy for CharacterState
[src]

impl<Ch, Str> Stateful<Ch, Str, Ch> for CharacterState
[src]

fn more(self, _: &mut Str) -> ParseResult<Self, Ch>

Provides data to the parser. Read more

fn done(self) -> Ch

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<Ch, Str> HasOutput<Ch, Str> for CharacterState
[src]

type Output = Ch

The type of the data being produced by the parser.