1use crate::Executable; 2 3pub struct ScheduledJob { 4 pub schedule: String, 5 pub create_instance: Box<dyn Fn() -> Box<dyn Executable> + Sync>, 6}