1 2 3 4 5 6 7 8 9
fn main() -> attohttpc::Result { env_logger::init(); let resp = attohttpc::head("http://httpbin.org").send()?; println!("Status: {:?}", resp.status()); println!("Headers:\n{:#?}", resp.headers()); Ok(()) }