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

Convert an Input into an appropriate Output type

Required Methods§

Convert an Input into an appropriate Output type

Implementors§