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