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.
[+] Show hidden undocumented itemsfn parse(
&mut self,
input: Input
) -> IResult<Input, (A, B, C, D, E, F, G, H), Error>
[src]
[+] Show hidden undocumented itemsfn parse(
&mut self,
input: Input
) -> IResult<Input, (A, B, C, D, E, F, G, H, I), Error>
[src]
[+] Show hidden undocumented itemsfn parse(
&mut self,
input: Input
) -> IResult<Input, (A, B, C, D, E, F, G, H, I, J), Error>
[src]
[+] Show hidden undocumented itemsfn parse(
&mut self,
input: Input
) -> IResult<Input, (A, B, C, D, E, F, G, H, I, J, K), Error>
[src]
[+] Show hidden undocumented itemsfn parse(
&mut self,
input: Input
) -> IResult<Input, (A, B, C, D, E, F, G, H, I, J, K, L), Error>
[src]
[+] Show hidden undocumented itemsfn parse(
&mut self,
input: Input
) -> IResult<Input, (A, B, C, D, E, F, G, H, I, J, K, L, M), Error>
[src]
[+] Show hidden undocumented itemsfn parse(
&mut self,
input: Input
) -> IResult<Input, (A, B, C, D, E, F, G, H, I, J, K, L, M, N), Error>
[src]
[+] Show hidden undocumented itemsfn parse(
&mut self,
input: Input
) -> IResult<Input, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O), Error>
[src]
[+] Show hidden undocumented itemsfn parse(
&mut self,
input: Input
) -> IResult<Input, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P), Error>
[src]
[+] Show hidden undocumented itemsfn parse(
&mut self,
input: Input
) -> IResult<Input, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q), Error>
[src]
[+] Show hidden undocumented itemsfn parse(
&mut self,
input: Input
) -> IResult<Input, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R), Error>
[src]
[+] Show hidden undocumented itemsfn parse(
&mut self,
input: Input
) -> IResult<Input, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S), Error>
[src]
[+] Show hidden undocumented itemsfn parse(
&mut self,
input: Input
) -> IResult<Input, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T), Error>
[src]
[+] Show hidden undocumented itemsfn parse(
&mut self,
input: Input
) -> IResult<Input, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U), Error>
[src]