//! 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).
pub use Deserializer;
pub use ;
pub use PathTracker;