Closed russcam closed 4 years ago
Serde's UrlEncodedSerializer<Target> does not know how to serialize an Option<Vec<String>> with some value. This should be serialized as one value, where the vec values are joined by commas.
UrlEncodedSerializer<Target>
Option<Vec<String>>
Opened #13 to address
Serde's
UrlEncodedSerializer<Target>
does not know how to serialize anOption<Vec<String>>
with some value. This should be serialized as one value, where the vec values are joined by commas.