pub trait WlanNetworkConfigProviderProxyInterface: Send + Sync {
type WatchConnectedNetworkResponseFut: Future<Output = Result<NetworkConfig, Error>> + Send;
// Required method
fn watch_connected_network(&self) -> Self::WatchConnectedNetworkResponseFut;
}