Trait TouchButtonsListenerProxyInterface

Source
pub trait TouchButtonsListenerProxyInterface: Send + Sync {
    type OnEventResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn on_event(&self, event: &TouchButtonsEvent) -> Self::OnEventResponseFut;
}

Required Associated Types§

Source

type OnEventResponseFut: Future<Output = Result<(), Error>> + Send

Required Methods§

Implementors§