It would be useful to deserialize hashmaps. E.g. ``` #[derive(Debug, Deserialize)] pub struct Params { pub metadata: HashMap<String, String>, } ``` Would allow inputs like ``` metadata[key_one]=x&metadata[key_two]=y ``` Is such a thing possible?
It would be useful to deserialize hashmaps.
E.g.
Would allow inputs like
Is such a thing possible?