pub trait Tuple<I, O, E> {
// Required method
fn parse(&mut self, input: I) -> Result<(I, O), Err<E>>;
}
Available on crate feature
mtls
only.Expand description
Helper trait for the tuple combinator.
This trait is implemented for tuples of parsers of up to 21 elements.