I have some JSON formatted like this:
[
{
"name": "jsonvalue"
}
]
And I want to print it like println!("{:?}", json["name"]);
. How do I access a JSON array from a serde_json::Value?
I would like to not have to use more variables to break it down is the point.