pub type TaskProviderGetJobResult = Result<Job, i32>;
enum TaskProviderGetJobResult { Ok(Job), Err(i32), }
Contains the success value
Contains the error value