(s: String)
| 430 | /// Convert from Rust primitive types to Value |
| 431 | impl From<String> for Value { |
| 432 | fn from(s: String) -> Self { |
| 433 | Value::String(s) |
| 434 | } |
| 435 | } |
| 436 | |
| 437 | impl From<&str> for Value { |
nothing calls this directly
no test coverage detected