Deserialize JSON array of structs without element types using serde

mind sharing those current attempts?

For comparison, ⟶ this expects the format you want (apart from trailing commas)

Also make sure to wrap Rust code in

```
code here
```

and plain text (no highlighting) in

```plain
my text here
```

or

```text
my text here
```

For example Rust-highlighting works reasonably for JSON, too, or you could use javascript hightlighting. See this pinned post.

[
    {
        "User": "user",
        "Password": "xx"
    },
    {
        "User": "root",
        "Password": "pwd"
    }
]