9个版本
0.1.0 | 2022年5月31日 |
---|---|
0.0.8 | 2021年4月17日 |
#419 in HTTP客户端
在tastytrade-rs中使用
8KB
92 行
reqwest-debug-json
为reqwest的响应对象提供inspect_json
方法。此方法是标准json
方法的替代品。
可用于响应JSON跟踪目的。
ErrorType
必须实现From<reqwest::Error>
+ From<serde_json::Error>
.inspect_json::<ResponseStruct, ErrorType>(move |text| {
debug!("Json data: {}", text);
})
扩展示例
use reqwest_inspect_json::InspectJson;
#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)]
struct TestDataClass {
key1: String,
key2: String,
}
#[derive(Serialize, Deserialize, Debug)]
struct Response {
json: TestDataClass,
}
let test_data = TestDataClass {
key1: "asdada".to_owned(),
key2: "asdagfdgdf".to_owned(),
};
let test_data_copy = test_data.clone();
let client = reqwest::Client::new();
let response = client
.post("http://httpbin.org/post")
.json(&test_data)
.send()
.await
.expect("Request failed")
.inspect_json::<Response, DebugError>(move |text| {
println!("Json content: {}", text);
let text_data = serde_json::from_str::<Response>(text).expect("Parsing failed");
assert_eq!(text_data.json, test_data_copy);
})
.await
.expect("Response parse failed");
assert_eq!(response.json, test_data);
依赖关系
~3–19MB
~247K SLoC