Как привести тип результата запрса awc: actix::futures::and_then<AndThen…, MapErr…, closure> к Result<String, Error>?
Примерный код
client::get("http://localhost/")
.header("User-Agent", "Actix-web")
.send()
.map_err(...)
})
.and_then(|mut response| {
let x = response.body().wait() match ...
futures::ok(x)
})
.and_then(|body_raw| {
let y = String::from_ ... body_raw
Ok(y)
})
});