pub type JobFuture = Pin<Box<dyn Future<Output = JobResult> + Send>>;
The boxed future returned by a scheduled job.
pub struct JobFuture { /* private fields */ }