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