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;
}Required Associated Types§
Required Methods§
fn on_access_point_state_update( &self, access_points: &[AccessPointState], ) -> Self::OnAccessPointStateUpdateResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".