# json-pointer
A crate for parsing and using JSON pointers, as specified in RFC 6901.
[](https://travis-ci.org/remexre/json-pointer)
## Creating a JSON Pointer
JSON pointers can be created with a literal `[&str]`, or parsed from a `String`.
```rust
TODO
```
## Using a JSON Pointer
The `JsonPointer` type provides `.get()` and `.get_mut()`, to get references
and mutable references to the appropriate value, respectively.
```rust
TODO
```