pub trait WlanNetworkConfigProviderProxyInterface: Send + Sync {
type WatchConnectedNetworkResponseFut: Future<Output = Result<NetworkConfig, Error>> + Send;
// Required method
fn watch_connected_network(&self) -> Self::WatchConnectedNetworkResponseFut;
}Required Associated Types§
Required Methods§
fn watch_connected_network(&self) -> Self::WatchConnectedNetworkResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".