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