I need to deserialize URL query parameters like ?some_var=a&special={"other_var"%3A"something"} with JSON mixed in
Corresponding structs are
struct Outer {
some_var: String,
special: Inner
}
struct Inner {
other_var: String
}
What's the best way to do this? I think serde's with attribute could help, but I'm not sure where to hook it up to
