pub trait KeyboardListenerProxyInterface: Send + Sync {
    type OnKeyEventResponseFut: Future<Output = Result<KeyEventStatus, Error>> + Send;

    // Required method
    fn on_key_event(&self, event: &KeyEvent) -> Self::OnKeyEventResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§