#![deny(missing_debug_implementations, nonstandard_style)]
#![warn(missing_docs, missing_doc_code_examples, unreachable_pub)]
#![cfg_attr(feature = "docs", feature(doc_cfg))]
mod config;
pub use config::Config;
#[cfg_attr(feature = "docs", doc(cfg(feature = "curl_client")))]
#[cfg(all(feature = "curl_client", not(target_arch = "wasm32")))]
pub mod isahc;
#[cfg_attr(feature = "docs", doc(cfg(feature = "wasm_client")))]
#[cfg(all(feature = "wasm_client", target_arch = "wasm32"))]
pub mod wasm;
#[cfg_attr(feature = "docs", doc(cfg(feature = "native_client")))]
#[cfg(any(feature = "curl_client", feature = "wasm_client"))]
pub mod native;
#[cfg_attr(feature = "docs", doc(cfg(feature = "h1_client")))]
#[cfg_attr(feature = "docs", doc(cfg(feature = "default")))]
#[cfg(any(feature = "h1_client", feature = "h1_client_rustls"))]
pub mod h1;
#[cfg_attr(feature = "docs", doc(cfg(feature = "hyper_client")))]
#[cfg(feature = "hyper_client")]
pub mod hyper;
pub type Request = http_types::Request;
pub type Response = http_types::Response;
pub use async_trait::async_trait;
pub use http_types;
#[async_trait]
pub trait HttpClient: std::fmt::Debug + Unpin + Send + Sync + 'static {
async fn send(&self, req: Request) -> Result<Response, Error>;
fn set_config(&mut self, _config: Config) -> http_types::Result<()> {
unimplemented!(
"{} has not implemented `HttpClient::set_config()`",
type_name_of(self)
)
}
fn config(&self) -> &Config {
unimplemented!(
"{} has not implemented `HttpClient::config()`",
type_name_of(self)
)
}
}
fn type_name_of<T: ?Sized>(_val: &T) -> &'static str {
std::any::type_name::<T>()
}
pub type Body = http_types::Body;
pub type Error = http_types::Error;
#[async_trait]
impl HttpClient for Box<dyn HttpClient> {
async fn send(&self, req: Request) -> http_types::Result<Response> {
self.as_ref().send(req).await
}
fn set_config(&mut self, config: Config) -> http_types::Result<()> {
self.as_mut().set_config(config)
}
fn config(&self) -> &Config {
self.as_ref().config()
}
}