pub enum DeprecatedConfiguratorRequest {
SuggestAccessPointMacAddress {
mac: MacAddress,
responder: DeprecatedConfiguratorSuggestAccessPointMacAddressResponder,
},
}
Expand description
Allows for the configuration of WLAN devices to support legacy applications.
Variants§
SuggestAccessPointMacAddress
Suggests a MAC address for [fuchsia.wlan.policy/AccessPointProvider
] to use when creating
new soft access point interfaces and notifies when the request is complete.
Implementations§
Source§impl DeprecatedConfiguratorRequest
impl DeprecatedConfiguratorRequest
pub fn into_suggest_access_point_mac_address( self, ) -> Option<(MacAddress, DeprecatedConfiguratorSuggestAccessPointMacAddressResponder)>
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 DeprecatedConfiguratorRequest
impl !RefUnwindSafe for DeprecatedConfiguratorRequest
impl Send for DeprecatedConfiguratorRequest
impl Sync for DeprecatedConfiguratorRequest
impl Unpin for DeprecatedConfiguratorRequest
impl !UnwindSafe for DeprecatedConfiguratorRequest
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