pub trait Tuple<I, O, E> { fn parse(&mut self, input: I) -> IResult<I, O, E>; }
Helper trait for the tuple combinator.
This trait is implemented for tuples of parsers of up to 21 elements.
Parses the input and returns a tuple of results of each parser.