pub trait Tuple<'a, O>: Clone {
// Required method
fn parse(&mut self, input: &'a str) -> ParseResult<'a, O>;
}Expand description
helper for tuple_
Required Methods§
fn parse(&mut self, input: &'a str) -> ParseResult<'a, O>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".