Trait nom::sequence::Tuple[][src]

pub trait Tuple<I, O, E> {
    fn parse(&self, input: I) -> IResult<I, O, E>;
}
Expand description

helper trait for the tuple combinator

this trait is implemented for tuples of parsers of up to 21 elements

Required methods

parses the input and returns a tuple of results of each parser

Implementations on Foreign Types

Implementors