pub trait AccessPointStateUpdatesProxyInterface: Send + Sync {
type OnAccessPointStateUpdateResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn on_access_point_state_update(
&self,
access_points: &[AccessPointState],
) -> Self::OnAccessPointStateUpdateResponseFut;
}