pub trait ProductProxyInterface: Send + Sync {
type GetInfoResponseFut: Future<Output = Result<ProductInfo, Error>> + Send;
// Required method
fn get_info(&self) -> Self::GetInfoResponseFut;
}
pub trait ProductProxyInterface: Send + Sync {
type GetInfoResponseFut: Future<Output = Result<ProductInfo, Error>> + Send;
// Required method
fn get_info(&self) -> Self::GetInfoResponseFut;
}