pub trait IntoOutputIResult<I, O, E> {
    // Required method
    fn into_output(self) -> IResult<I, O, E>;
}
Expand description

Convert an Input into an appropriate Output type

Required Methods§

source

fn into_output(self) -> IResult<I, O, E>

Convert an Input into an appropriate Output type

Implementors§

source§

impl<I, E> IntoOutputIResult<I, <I as IntoOutput>::Output, E> for IResult<I, I, E>where I: IntoOutput,