pub trait EventHandlerSimple<Args, S_CLIENT: Clone + Send + Sync + 'static>:
Send
+ Sync
+ 'static {
// Required method
fn call(
&self,
args: Args,
state: Arc<S_CLIENT>,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'static>>;
}