pub trait ExampleEventMonitorProxyInterface: Send + Sync {
type OnEventResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn on_event(&self, event: &str) -> Self::OnEventResponseFut;
}
pub trait ExampleEventMonitorProxyInterface: Send + Sync {
type OnEventResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn on_event(&self, event: &str) -> Self::OnEventResponseFut;
}