pub type JobResult = Result<(), ()>;
Result type for various stagings of a jobs
enum JobResult { Ok(()), Err(()), }
Contains the success value
Contains the error value