json-pointer 0.1.0

A crate for parsing and using JSON pointers, as specified in RFC 6901.
Documentation

json-pointer

A crate for parsing and using JSON pointers, as specified in RFC 6901.

Build Status

Creating a JSON Pointer

JSON pointers can be created with a literal [&str], or parsed from a String.

TODO

Using a JSON Pointer

The JsonPointer type provides .get() and .get_mut(), to get references and mutable references to the appropriate value, respectively.

TODO