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