eserde 0.1.7

Like `serde`, but it doesn't stop at the first deserialization error
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Represent locations in structured data through a hierarchical path structure.
//!
//! The main type is [`Path`], which represents a full path sequence
//! composed of individual [`Segment`]s.
//!
//! ## Design
//!
//! The design for this module was inspired by the approach followed in
//! [`serde_path_to_error`](https://crates.io/crates/serde_path_to_error).
mod de;
mod path_;
mod tracker;
mod wrap;

#[allow(unused)]
pub(crate) use de::Deserializer;
pub use path_::{Path, Segment, Segments};
pub(crate) use tracker::PathTracker;