Type Definition combine::ConsumedResult
[−]
[src]
type ConsumedResult<O, I> = FastResult<(O, I), ParseError<I>>;
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)