pub trait Worker: Send {
// Required methods
fn on_tick<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_name(&self) -> &str;
fn interval(&self) -> i32;
}