pub trait TaskInformer: Send + Sync + 'static { // Required methods fn on_update(&mut self, task: Task); fn on_error(&mut self, e: FlameError); }