This is what i'm currently doing and it produces this error
let response_body = response.text().await.unwrap();
println!("{:?}", serde_json::from_str(&response_body));
`cannot infer type for type parameter T declared on the function from_str`
Then when i remove the borrow notation from the response_body in from_str i get this error