pub type JobResult = Result<(), String>;
The task return type used by scheduled jobs.
pub enum JobResult { Ok(()), Err(String), }
Contains the success value
Contains the error value