#[test] fn test_readme_example() -> Result<(), Box> { use hyper::{Body, Client}; use hyper_trust_dns_connector::new_async_http_connector; #[tokio::main] async fn main() -> Result<(), Box> { let http = new_async_http_connector()?; let client = Client::builder().build::<_, Body>(http); let status_code = client .get(hyper::Uri::from_static("http://httpbin.org/ip")) .await? .status(); assert_eq!(status_code, 200); Ok(()) } main() }