pub trait ScanResultUpdate: Sync + Send {
    // Required method
    fn update_scan_results<'life0, 'async_trait>(
        &'life0 self,
        scan_results: Vec<ScanResult>
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Allows for consumption of updated scan results.

Required Methods§

source

fn update_scan_results<'life0, 'async_trait>( &'life0 self, scan_results: Vec<ScanResult> ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§