1 2 3 4 5 6 7 8
use async_trait::async_trait; #[async_trait] pub trait InitializableEventHandler { async fn init_event_handler( &self, ) -> Option<tokio::sync::oneshot::Receiver<Result<(), crate::Error>>>; }