(&self)
| 78 | |
| 79 | #[allow(non_snake_case)] |
| 80 | pub fn String(&self) -> Option<String> { |
| 81 | if let Value::String(string) = self { |
| 82 | Some(string.to_string()) |
| 83 | } else { |
| 84 | None |
| 85 | } |
| 86 | } |
| 87 | } |
nothing calls this directly
no outgoing calls
no test coverage detected