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