pub type FetchFuture<'a> = Pin<Box<dyn Future<Output = Result<Response, FetchError>> + Send + 'a>>;
A future a backend answers with.
#[repr(transparent)]pub struct FetchFuture<'a> { /* private fields */ }