pub trait ManifestProviderProxyInterface: Send + Sync {
type GetManifestResponseFut: Future<Output = Result<ManifestProviderGetManifestResult, Error>> + Send;
// Required method
fn get_manifest(&self) -> Self::GetManifestResponseFut;
}pub trait ManifestProviderProxyInterface: Send + Sync {
type GetManifestResponseFut: Future<Output = Result<ManifestProviderGetManifestResult, Error>> + Send;
// Required method
fn get_manifest(&self) -> Self::GetManifestResponseFut;
}