pub type JobResult = Result<String, Box<dyn Error + Send + Sync>>;
pub enum JobResult { Ok(String), Err(Box<dyn Error + Send + Sync>), }
Contains the success value
Contains the error value