Returns the number of tokens in the `Pointer`.
(&self)
| 126 | |
| 127 | /// Returns the number of tokens in the `Pointer`. |
| 128 | pub fn count(&self) -> usize { |
| 129 | self.tokens().count() |
| 130 | } |
| 131 | |
| 132 | /// Returns `true` if the JSON Pointer equals `""`. |
| 133 | pub fn is_root(&self) -> bool { |
no test coverage detected