pub type JobResult<T, E> = Result<T, JobError<E>>;
A common Result type in the worker.
enum JobResult<T, E> { Ok(T), Err(JobError<E>), }
Contains the success value
Contains the error value