pub trait InputDeviceProxyInterface: Send + Sync {
// Required method
fn dispatch_report(&self, report: &InputReport) -> Result<(), Error>;
}Required Methods§
fn dispatch_report(&self, report: &InputReport) -> Result<(), Error>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".