pub trait GattClientControllerProxyInterface: Send + Sync {
type DiscoverServicesResponseFut: Future<Output = Result<GattClientControllerDiscoverServicesResult, Error>> + Send;
// Required method
fn discover_services(&self) -> Self::DiscoverServicesResponseFut;
}Required Associated Types§
type DiscoverServicesResponseFut: Future<Output = Result<GattClientControllerDiscoverServicesResult, Error>> + Send
Required Methods§
fn discover_services(&self) -> Self::DiscoverServicesResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".