ploidy-pointer
This crate provides a way to traverse typed Rust data structures using JSON Pointers (RFC 6901). At its heart is the JsonPointee trait, which can be implemented on types to make them traversable.
ploidy-pointer is part of the Ploidy OpenAPI code generator, but can be used standalone.
Features
- Parse and resolve JSON Pointer strings.
- Built-in
JsonPointeeimplementations for primitives, collections, and common external types. - Derive
JsonPointeeimplementations for your own types.
Cargo features
derive(default): Enables the#[derive(JsonPointee)]macro.did-you-mean: Adds suggestions for typos to error messages.serde_json: ImplementsJsonPointeeforserde_json::Value.chrono: ImplementsJsonPointeeforchrono::DateTime<Utc>.url: ImplementsJsonPointeeforurl::Url.indexmap: ImplementsJsonPointeeforindexmap::IndexMap.full: Enables all features.
JSON Pointer Syntax
JSON Pointers are strings that identify a specific value within a JSON structure:
""(empty string) - References the root value."/foo"- References thefoofield."/foo/0"- References the first element of thefooarray."/foo/bar"- References thebarfield of thefooobject.
Two special characters need to be escaped: ~ is written as ~0, and / is written as ~1.
Note that "/" (a single slash) does not reference the root; it references a field named "" (the empty string). If you see an "unknown key" error for a field that you know exists, double-check that an extra slash hasn't snuck in to the pointer string.
Usage
use ;
use HashMap;
let mut data = new;
data.insert;
// Parse a JSON Pointer.
let pointer = parse.unwrap;
// Resolve it against your data.
let result = data.resolve.unwrap;
// Downcast to the expected type.
assert_eq!;
Deriving JsonPointee for your own types
The #[derive(JsonPointee)] macro can generate implementations of JsonPointer for structs and enums, and supports Serde-like attributes for customizing the implementations. For more details, please see the ploidy-pointer-derive docs.
use ;
let user = User ;
let pointer = parse.unwrap;
let result = user.resolve.unwrap;
assert_eq!;
Errors
Type errors and missing key errors omit details by default, but you can enable the did-you-mean Cargo feature to add more context to error messages. Ploidy does this to provide more helpful errors when parsing OpenAPI documents:
let pointer = parse.unwrap;
match user.resolve
Similar crates
There are many great options for working with JSON Pointers in Rust: jsonptr, json-pointer and its forks, and serde_json::Value::pointer.
For native Rust data structures, bevy_reflect and facet offer much more powerful runtime reflection capabilities.
ploidy-pointer fills a niche somewhere in between these two, providing JSON Pointers for native Rust data structures. This is especially useful for code generators like Ploidy, and strongly-typed API clients that want to navigate structured responses.
In short:
- If you're working with structured data, and want to add type-safe JSON Pointer traversal, ploidy-pointer could be a good fit.
- If you're working with dynamic JSON documents, and want to read and write values, consider jsonptr or json-pointer.
- If you're working with simpler JSON values, and don't need more advanced features, the
pointer()method onserde_json::Valuemight be enough. - If you'd like full runtime reflection for your structured data, give bevy_reflect or facet a try.