Trait Tuple

trait Tuple<I, O, E>

Helper trait for the tuple combinator.

This trait is implemented for tuples of parsers of up to 21 elements.

Required Methods

fn parse_tuple(self: &mut Self, input: I) -> IResult<I, O, E>

Parses the input and returns a tuple of results of each parser.

Implementors