pub enum AccessPointListenerRequest {
GetListener {
updates: ClientEnd<AccessPointStateUpdatesMarker>,
control_handle: AccessPointListenerControlHandle,
},
}
Expand description
The AccessPointListener API provides a mechanism for callers to receive state change updates about wlan access point operation.
Variants§
GetListener
Registration for callers to receive wlan access point (ap) mode state updates.
Fields
§
updates: ClientEnd<AccessPointStateUpdatesMarker>
§
control_handle: AccessPointListenerControlHandle
Implementations§
Source§impl AccessPointListenerRequest
impl AccessPointListenerRequest
pub fn into_get_listener( self, ) -> Option<(ClientEnd<AccessPointStateUpdatesMarker>, AccessPointListenerControlHandle)>
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 AccessPointListenerRequest
impl !RefUnwindSafe for AccessPointListenerRequest
impl Send for AccessPointListenerRequest
impl Sync for AccessPointListenerRequest
impl Unpin for AccessPointListenerRequest
impl !UnwindSafe for AccessPointListenerRequest
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