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