Returns `true` if the JSON Pointer equals `""`.
(&self)
| 131 | |
| 132 | /// Returns `true` if the JSON Pointer equals `""`. |
| 133 | pub fn is_root(&self) -> bool { |
| 134 | self.0.is_empty() |
| 135 | } |
| 136 | |
| 137 | /// Returns a `serde_json::Value` representation of this `Pointer` |
| 138 | #[cfg(feature = "json")] |
no test coverage detected