pub type ExecResult<T> = Result<T, ExecError>;
pub enum ExecResult<T> { Ok(T), Err(ExecError), }
Contains the success value
Contains the error value