pub enum WlanBaseStationWatcherRequest {
ReportCurrentStations {
stations: ClientEnd<ScanResultIteratorMarker>,
control_handle: WlanBaseStationWatcherControlHandle,
},
}
Expand description
Passively accepts WLAN scan results.
Variants§
ReportCurrentStations
Provides a handle with which to enumerate the stations currently visible to the device.
Fields
§
stations: ClientEnd<ScanResultIteratorMarker>
§
control_handle: WlanBaseStationWatcherControlHandle
Implementations§
Source§impl WlanBaseStationWatcherRequest
impl WlanBaseStationWatcherRequest
pub fn into_report_current_stations( self, ) -> Option<(ClientEnd<ScanResultIteratorMarker>, WlanBaseStationWatcherControlHandle)>
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 WlanBaseStationWatcherRequest
impl !RefUnwindSafe for WlanBaseStationWatcherRequest
impl Send for WlanBaseStationWatcherRequest
impl Sync for WlanBaseStationWatcherRequest
impl Unpin for WlanBaseStationWatcherRequest
impl !UnwindSafe for WlanBaseStationWatcherRequest
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