| 34 | /// the next, non-existent index in a JSON array. |
| 35 | #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)] |
| 36 | pub struct Token<'a> { |
| 37 | inner: Cow<'a, str>, |
| 38 | } |
| 39 | |
| 40 | impl<'a> Token<'a> { |
| 41 | /// Constructs a `Token` from an RFC 6901 encoded string. |