pub trait RegulatoryRegionWatcherProxyInterface: Send + Sync {
type GetUpdateResponseFut: Future<Output = Result<String, Error>> + Send;
type GetRegionUpdateResponseFut: Future<Output = Result<Option<String>, Error>> + Send;
// Required methods
fn get_update(&self) -> Self::GetUpdateResponseFut;
fn get_region_update(&self) -> Self::GetRegionUpdateResponseFut;
}Required Associated Types§
type GetUpdateResponseFut: Future<Output = Result<String, Error>> + Send
type GetRegionUpdateResponseFut: Future<Output = Result<Option<String>, Error>> + Send
Required Methods§
fn get_update(&self) -> Self::GetUpdateResponseFut
fn get_region_update(&self) -> Self::GetRegionUpdateResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".