Type Definition combine::ConsumedResult [] [src]

type ConsumedResult<O, I> = FastResult<(O, I), <I as StreamOnce>::Error>;

A Result type which has the consumed status flattened into the result. Conversions to and from std::result::Result can be done using result.into() or From::from(result)

Methods

impl<T, E> ConsumedResult<T, E> where
    E: StreamOnce + Positioned
[src]

[src]

Trait Implementations

impl<O, I> Into<ParseResult<O, I>> for ConsumedResult<O, I> where
    I: StreamOnce + Positioned
[src]

[src]

Performs the conversion.

impl<O, I> From<ParseResult<O, I>> for ConsumedResult<O, I> where
    I: StreamOnce + Positioned
[src]

[src]

Performs the conversion.