pub type TaskResult<T> = Result<T, TaskError>;
Result type used by the Task implementation
Task
enum TaskResult<T> { Ok(T), Err(TaskError), }
Contains the success value
Contains the error value