use reqwest::Response; use serde::de::DeserializeOwned; pub async fn parse_response(response: Response) -> Result { response.json::().await }