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