pub trait Joignable<'slice, 'src, Lang: Language, E, IE> {
// Required method
fn parse(
&mut self,
input: Input<'slice, 'src, Lang>,
) -> IResult<'slice, 'src, Lang, E, IE>;
}pub trait Joignable<'slice, 'src, Lang: Language, E, IE> {
// Required method
fn parse(
&mut self,
input: Input<'slice, 'src, Lang>,
) -> IResult<'slice, 'src, Lang, E, IE>;
}