pub trait TouchButtonsListenerProxyInterface: Send + Sync {
type OnEventResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn on_event(&self, event: TouchButtonsEvent) -> Self::OnEventResponseFut;
}pub trait TouchButtonsListenerProxyInterface: Send + Sync {
type OnEventResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn on_event(&self, event: TouchButtonsEvent) -> Self::OnEventResponseFut;
}