pub trait KeyboardWatchProxyInterface: Send + Sync {
    type WatchResponseFut: Future<Output = Result<KeyboardSettings, Error>> + Send;

    // Required method
    fn watch(&self) -> Self::WatchResponseFut;
}

Required Associated Types§

Required Methods§

source

fn watch(&self) -> Self::WatchResponseFut

Implementors§