Oli Scherer

Results 712 comments of Oli Scherer

This is simply a feature I haven't gotten around to implement.

Indeed there were breaking changes, that's why the version was updated. If your "plaintext" field is always there, but sometimes empty and sometimes not, then you probably need it to...

ok, I'll investigate. Stay on an older serde_xml version for now, 0.8 should still work.

@indiv0 I think the solution is to move away from `Option` and to `String` entirely. So your `` would deserialize to an empty string. Although this depends on https://github.com/serde-rs/serde/pull/635 ....

@indiv0 with the serde-pr you can do `Option`: * missing tag => `None` * `` => `Some("")` * `` => `Some("")` * `text` => `Some("text")` or if you just use...

The branch has been merged. It's not been published yet, but you can use the serde github repo as a dependency in your code, serde-xml should then pull that in...

@SamWhited this is not a serde_xml issue, but a serde issue, serde has been released a while ago, all you need to do is update your serde dependency to the...

Sequences in XML are hard :) That's why I went with only accepting the `xsi:type` method for now. What do you think about the following structure, similar to how it's...