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§
Sourcefn into_output(self) -> IResult<I, O, E>
fn into_output(self) -> IResult<I, O, E>
Convert an Input into an appropriate Output type