pub type Res<In, Out> = Result<(Out, Input<In>), ErrorTree>;
The return value of this crate’s parsers
enum Res<In, Out> { Ok((Out, Input<In>)), Err(ErrorTree), }
Contains the success value
Contains the error value