pub trait KeyEventInjectorProxyInterface: Send + Sync {
type InjectResponseFut: Future<Output = Result<KeyEventStatus, Error>> + Send;
// Required method
fn inject(&self, key_event: &KeyEvent) -> Self::InjectResponseFut;
}
pub trait KeyEventInjectorProxyInterface: Send + Sync {
type InjectResponseFut: Future<Output = Result<KeyEventStatus, Error>> + Send;
// Required method
fn inject(&self, key_event: &KeyEvent) -> Self::InjectResponseFut;
}