pub trait TouchInputListenerProxyInterface: Send + Sync {
    // Required method
    fn report_touch_input(
        &self,
        payload: &TouchInputListenerReportTouchInputRequest
    ) -> Result<(), Error>;
}

Required Methods§

Implementors§