externcrate reqwest;externcrate serde_json;useserde_json::Value;////// ### Convenience function for getting JSON from return string via `serde`
pubfnget_json(mutreqwest_res:reqwest::Response)->Result<Value, Box<dyn std::error::Error>>{let data: Value =serde_json::from_str(&reqwest_res.text()?)?;Ok(data)}