#serialization #error #serde #path #field-name #chain #element

serde_path_to_error

Path to the element that failed to deserialize

17 releases

0.1.16 Mar 9, 2024
0.1.14 Jul 15, 2023
0.1.11 Mar 22, 2023
0.1.9 Dec 17, 2022
0.1.1 Jan 7, 2019

#51 in Encoding

Download history 336093/week @ 2023-12-07 312987/week @ 2023-12-14 189686/week @ 2023-12-21 223325/week @ 2023-12-28 356052/week @ 2024-01-04 377864/week @ 2024-01-11 422499/week @ 2024-01-18 407155/week @ 2024-01-25 424368/week @ 2024-02-01 416621/week @ 2024-02-08 402369/week @ 2024-02-15 440092/week @ 2024-02-22 455836/week @ 2024-02-29 483387/week @ 2024-03-07 480924/week @ 2024-03-14 393326/week @ 2024-03-21

1,894,781 downloads per month
Used in 533 crates (134 directly)

MIT/Apache

84KB
2.5K SLoC

Serde path to error

github crates.io docs.rs build status

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");
        }
    }
}

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~115–365KB