pub enum AccessPointStateUpdatesRequest {
OnAccessPointStateUpdate {
access_points: Vec<AccessPointState>,
responder: AccessPointStateUpdatesOnAccessPointStateUpdateResponder,
},
}
Expand description
AccessPoint operation status changes along with associated connection status.
Variants§
OnAccessPointStateUpdate
Updates registered listeners with the current summary of wlan access point operating states. This will be called when there are changes with active access point networks - both the number of access points and their individual activity. Registered listeners are responsible for deciding what information has changed (this is dependent on when they last acknowledged the update).
Fields
§
access_points: Vec<AccessPointState>
Implementations§
Source§impl AccessPointStateUpdatesRequest
impl AccessPointStateUpdatesRequest
pub fn into_on_access_point_state_update( self, ) -> Option<(Vec<AccessPointState>, AccessPointStateUpdatesOnAccessPointStateUpdateResponder)>
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 AccessPointStateUpdatesRequest
impl !RefUnwindSafe for AccessPointStateUpdatesRequest
impl Send for AccessPointStateUpdatesRequest
impl Sync for AccessPointStateUpdatesRequest
impl Unpin for AccessPointStateUpdatesRequest
impl !UnwindSafe for AccessPointStateUpdatesRequest
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