pub trait FetchWith {
// Required method
fn fetch_with<T>(
&self,
client: T,
) -> impl Future<Output = Result<DeboaResponse>>
where T: AsRef<Client> + Send;
}Expand description
Required Methods§
Sourcefn fetch_with<T>(
&self,
client: T,
) -> impl Future<Output = Result<DeboaResponse>>
fn fetch_with<T>( &self, client: T, ) -> impl Future<Output = Result<DeboaResponse>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.