pub trait RemoteConfigFetchClient: Send + Sync {
// Required method
fn fetch(&self, request: FetchRequest) -> RemoteConfigResult<FetchResponse>;
}Expand description
Abstraction over the network layer used to retrieve Remote Config templates.
Required Methods§
fn fetch(&self, request: FetchRequest) -> RemoteConfigResult<FetchResponse>
Implementors§
impl RemoteConfigFetchClient for HttpRemoteConfigFetchClient
Available on non-WebAssembly only.