Crates.io | serde_path_to_error |
lib.rs | serde_path_to_error |
version | |
source | src |
created_at | 2019-01-07 00:04:58.762298+00 |
updated_at | 2025-03-03 04:51:06.825049+00 |
description | Path to the element that failed to deserialize |
homepage | |
repository | https://github.com/dtolnay/path-to-error |
max_upload_size | |
id | 105940 |
Cargo.toml error: | TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
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");
}
}
}