-
Notifications
You must be signed in to change notification settings - Fork 20
Serde integration? #35
Comments
Prior art found in... another xml-rpc crate? https://github.com/adnanademovic/xml-rpc-rs/tree/d258ec563ef9af93d2ae9cc497ea31ed52e8890c/src/xmlfmt |
Signed-off-by: Marcello Seri <marcello.seri@citrix.com>
Initial work on this is being done on the |
That could even be a separate crate on which this one would depend (e.g. serde-xmlrpc which would only handle the data transcoding), with this crate implementing the networkey bits? https://github.com/RReverser/serde-xml-rs but it seems to be doing its own custom thing rather than implementing a "standard" XML serialisation dialect. |
Correct, this could be implemented outside this crate. I'm currently not seeing too many reasons to do that, though. The current way it's implemented in the serde branch means that it's an internal detail of this crate and doesn't need a large and well thought-out API. |
It should be possible, at least in some cases, to automatically (de-)serialize data from/to the XMLRPC format. This would be pretty cool to have. Investigate and prototype!
The text was updated successfully, but these errors were encountered: