pub enum WlanNetworkConfigProviderRequest {
WatchConnectedNetwork {
responder: WlanNetworkConfigProviderWatchConnectedNetworkResponder,
},
}
Expand description
Component acting as WLAN network configuration provider for WeaveStack need to implement this.
Variants§
WatchConnectedNetwork
Returns current network configuration when new information is available.
First call returns the current network configuration if available, otherwise return empty config. WeaveStack consumes network config and sends another request.
Fields
Implementations§
Source§impl WlanNetworkConfigProviderRequest
impl WlanNetworkConfigProviderRequest
pub fn into_watch_connected_network( self, ) -> Option<WlanNetworkConfigProviderWatchConnectedNetworkResponder>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WlanNetworkConfigProviderRequest
impl !RefUnwindSafe for WlanNetworkConfigProviderRequest
impl Send for WlanNetworkConfigProviderRequest
impl Sync for WlanNetworkConfigProviderRequest
impl Unpin for WlanNetworkConfigProviderRequest
impl !UnwindSafe for WlanNetworkConfigProviderRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more