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