pub trait WebFetchEngine: Send + Sync {
// Required method
fn fetch<'life0, 'async_trait>(
&'life0 self,
input: WebFetchEngineInput,
) -> Pin<Box<dyn Future<Output = Result<WebFetchEngineResult, FetchError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}