pub trait KeyboardListenerProxyInterface: Send + Sync {
type OnKeyEventResponseFut: Future<Output = Result<KeyEventStatus, Error>> + Send;
// Required method
fn on_key_event(&self, event: &KeyEvent) -> Self::OnKeyEventResponseFut;
}
pub trait KeyboardListenerProxyInterface: Send + Sync {
type OnKeyEventResponseFut: Future<Output = Result<KeyEventStatus, Error>> + Send;
// Required method
fn on_key_event(&self, event: &KeyEvent) -> Self::OnKeyEventResponseFut;
}