I'm trying to save response of a HTTP request in a variable but i don't know how is it possible.
I'm using last version of hyper.
let res = "".to_string();
let work = client.request(req).and_then(|res| {
println!("Response: {}", res.status());
res.body()
.for_each(|chunk| io::stdout().write_all(&chunk).map_err(From::from))
});
core.run(work).unwrap();
This is peace of code that just will print value in stdout. I would like store result in a variable like res;
Your case is very similar except you want to convert the bytes of the response to a String. If you also yield the String from the closure, then core.run(work).unwrap() will return you that String.