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