pub type TaskResult = Result<RunOutput>;
pub enum TaskResult { Ok(RunOutput), Err(Error), }
Contains the success value
Contains the error value