nom8

Trait IntoOutputIResult

Source
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,