| Crates.io | serde_path_to_error |
| lib.rs | serde_path_to_error |
| version | 0.1.20 |
| created_at | 2019-01-07 00:04:58.762298+00 |
| updated_at | 2025-09-15 15:05:54.817744+00 |
| description | Path to the element that failed to deserialize |
| homepage | |
| repository | https://github.com/dtolnay/path-to-error |
| max_upload_size | |
| id | 105940 |
| size | 106,357 |
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");
}
}
}