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