I have this code:
let data = r#"
{
"name": "john",
"address": "street 34",
"age": 22,
"phones": [
"+34 21213232367",
"+34 82837826476"
]
}
"#;
let value1: Value = serde_json::from_str::<Value>(data)?;
println!("name {} ", value1["name"]);
This prints =>
name "john"
However, I'd like to print
name john
Without "", how can I do it?