pub trait RoamMonitorApi: Send + Sync {
    // Required methods
    fn handle_connection_stats(
        &mut self,
        stats: SignalReportIndication
    ) -> Result<u8, Error>;
    fn get_signal_data(&self) -> SignalData;
}
Expand description

Trait so that RoamMonitor can be mocked in tests.

Required Methods§

Implementors§