pub type PResult<T, E> = Result<(usize, T), E>;
The parse result of a combinator.
pub enum PResult<T, E> { Ok((usize, T)), Err(E), }
Contains the success value
Contains the error value