pub trait WlanBaseStationWatcherProxyInterface: Send + Sync {
    // Required method
    fn report_current_stations(
        &self,
        stations: ClientEnd<ScanResultIteratorMarker>
    ) -> Result<(), Error>;
}

Required Methods§

source

fn report_current_stations( &self, stations: ClientEnd<ScanResultIteratorMarker> ) -> Result<(), Error>

Implementors§