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