Skip to content

Instantly share code, notes, and snippets.

@AzMoo
Created July 31, 2017 23:38
Show Gist options
  • Save AzMoo/462643bb3b31165651d3c27538c83f82 to your computer and use it in GitHub Desktop.
Save AzMoo/462643bb3b31165651d3c27538c83f82 to your computer and use it in GitHub Desktop.
// This errors with expected type `hyper::Uri`
let uri = "https://icanhazdadjoke.com/"
let work = client.get(uri).map(|res| {
println!("Response: {}", res.status());
});
// This works
let uri = "https://icanhazdadjoke.com/".parse().unwrap();
let work = client.get(uri).map(|res| {
println!("Response: {}", res.status());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment