pub trait DeviceProxyInterface: Send + Sync {
type InjectResponseFut: Future<Output = Result<(), Error>> + Send;
// Required methods
fn inject(&self, events: Vec<Event>) -> Self::InjectResponseFut;
fn inject_events(&self, events: Vec<Event>) -> Result<(), Error>;
}