usehttp_req::request;fnmain(){// Sends a HTTP HEAD request and processes the response.
let res =request::head("https://www.rust-lang.org/learn").unwrap();// Prints the details about the response.
println!("Status: {}{}", res.status_code(), res.reason());println!("Headers: {}", res.headers());}