pub trait GattClientControllerProxyInterface: Send + Sync {
type DiscoverServicesResponseFut: Future<Output = Result<GattClientControllerDiscoverServicesResult, Error>> + Send;
// Required method
fn discover_services(&self) -> Self::DiscoverServicesResponseFut;
}