pub trait KeyboardWatchProxyInterface: Send + Sync {
type WatchResponseFut: Future<Output = Result<KeyboardSettings, Error>> + Send;
// Required method
fn watch(&self) -> Self::WatchResponseFut;
}
pub trait KeyboardWatchProxyInterface: Send + Sync {
type WatchResponseFut: Future<Output = Result<KeyboardSettings, Error>> + Send;
// Required method
fn watch(&self) -> Self::WatchResponseFut;
}