pub trait FetchProvider: Send + Sync {
// Required method
fn fetch<'life0, 'life1, 'async_trait>(
&'life0 self,
url: &'life1 str,
budget: WebByteBudget,
) -> Pin<Box<dyn Future<Output = Result<WebFetchResult, WebFetchError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}Expand description
A web_fetch backend: a URL maps to readable page content. Implemented by
NativeFetchClient (in-process fetch) and OllamaWebClient (Ollama
Cloud’s server-side fetch).
Required Methods§
fn fetch<'life0, 'life1, 'async_trait>(
&'life0 self,
url: &'life1 str,
budget: WebByteBudget,
) -> Pin<Box<dyn Future<Output = Result<WebFetchResult, WebFetchError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".