pub trait InputDeviceProxyInterface: Send + Sync {
    // Required method
    fn dispatch_report(&self, report: &InputReport) -> Result<(), Error>;
}

Required Methods§

source

fn dispatch_report(&self, report: &InputReport) -> Result<(), Error>

Implementors§