pub type ParseResult<'a, T, E = Error<'a>> = Result<T, Err<'a, E>>;
enum ParseResult<'a, T, E = Error<'a>> { Ok(T), Err(Err<E>), }
Contains the success value
Contains the error value