You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
results in the propname test failing because the XML is deserialized as Propfind::AllProp { allprop: AllProp } instead of the expected Propfind::PropName variant.
How can I get the given XML snippets to deserialize the way I want?
The text was updated successfully, but these errors were encountered:
Looks like this feature request also relates to what I was trying to achieve (example in #185). The approach is slightly different here, but the goal is practically identical. Often it is needed to keep the element order throughout the de-/serialization process.
Running
cargo test
on the following code:with the following dependencies:
results in the
propname
test failing because the XML is deserialized asPropfind::AllProp { allprop: AllProp }
instead of the expectedPropfind::PropName
variant.How can I get the given XML snippets to deserialize the way I want?
The text was updated successfully, but these errors were encountered: