let client = reqwest::blocking::Client::new(); let res = client.get("https://google.com") .header("Accept-Language", "en-US") .send().expect("Could not execute the request.");