pub trait ReqwestClientCore {
// Required methods
fn reqwest_client(&self) -> &Client;
fn base_url(&self) -> &str;
}Expand description
Shared accessors used by generated reqwest client implementations.
Required Methods§
Sourcefn reqwest_client(&self) -> &Client
fn reqwest_client(&self) -> &Client
Return the reqwest client used for outbound requests.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".