Crates.io | serde_path_to_error |
lib.rs | serde_path_to_error |
version | 0.1.16 |
source | src |
created_at | 2019-01-07 00:04:58.762298 |
updated_at | 2024-03-09 18:34:53.49095 |
description | Path to the element that failed to deserialize |
homepage | |
repository | https://github.com/dtolnay/path-to-error |
max_upload_size | |
id | 105940 |
size | 101,959 |
Find out the path at which a deserialization error occurred. This crate provides
a wrapper that works with any existing Serde Deserializer
and exposes the
chain of field names leading to the error.
[dependencies]
serde = "1.0"
serde_path_to_error = "0.1"
use serde::Deserialize;
use std::collections::BTreeMap as Map;
#[derive(Deserialize)]
struct Package {
name: String,
dependencies: Map<String, Dependency>,
}
#[derive(Deserialize)]
struct Dependency {
version: String,
}
fn main() {
let j = r#"{
"name": "demo",
"dependencies": {
"serde": {
"version": 1
}
}
}"#;
// Some Deserializer.
let jd = &mut serde_json::Deserializer::from_str(j);
let result: Result<Package, _> = serde_path_to_error::deserialize(jd);
match result {
Ok(_) => panic!("expected a type error"),
Err(err) => {
let path = err.path().to_string();
assert_eq!(path, "dependencies.serde.version");
}
}
}