pub trait DeviceProxyInterface: Send + Sync {
    type InjectResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn inject(&self, events: &[Event]) -> Self::InjectResponseFut;
}

Required Associated Types§

source

type InjectResponseFut: Future<Output = Result<(), Error>> + Send

Required Methods§

source

fn inject(&self, events: &[Event]) -> Self::InjectResponseFut

Implementors§