pub trait Tuple<'a, O>: Clone {
    fn parse(&mut self, input: &'a str) -> ParseResult<'a, O>;
}
Expand description

helper for tuple_

Required Methods

Implementations on Foreign Types

Implementors