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