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