Enum parsell::ParseResult [] [src]

pub enum ParseResult<State, Output> {
    Done(Output),
    Continue(State),
}

The result of parsing

Variants

The parse is finished.

The parse can continue.

Methods

impl<State, Output> ParseResult<State, Output>
[src]

Trait Implementations

impl<State: Copy, Output: Copy> Copy for ParseResult<State, Output>
[src]

impl<State: Clone, Output: Clone> Clone for ParseResult<State, Output>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter.

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.