Skip to main content

AccessPointStateUpdatesProxyInterface

Trait AccessPointStateUpdatesProxyInterface 

Source
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§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§