pub trait ToCode<T>where
T: Send,{
// Required methods
fn init(
&mut self,
context: &Context,
) -> Pin<Box<dyn Future<Output = Result<(), JobSchedulerError>> + Send>>;
fn get(&mut self, uuid: Uuid) -> PinnedGetFuture<T>;
}