# reqwest ## Notes ### How to clone a `reqwest::Response` (for the purposes of debugging) https://users.rust-lang.org/t/how-do-i-clone-a-reqwest-response/28065 It's not possible since `Response` is read directly from buffer, but a workaround: ```rust let text = resp.text()?; println!("{}", text); let json: Vec<String> = serde_json::from_str(&text)?; println!("{:#?}", json); ```