xmlserde
xmlserde copied to clipboard
A user-friendly Rust library for serializing or deserializing the XML files
Updates the requirements on [quick-xml](https://github.com/tafia/quick-xml) to permit the latest version. Release notes Sourced from quick-xml's releases. v0.36.0 - Compatibility with Adobe Flash What's Changed Bug Fixes #781: Fix conditions to...
``` #[derive(XmlSerialize)] #[xmlserde(root = b"root")] struct Wrapper { #[xmlserde(name = b"header", ty = "attr")] header: String, #[xmlserde(ty = "untag")] body: T, } #[derive(XmlSerialize)] #[xmlserde(root = b"Foo")] struct Foo { #[xmlserde(name...
``` #[derive(XmlSerialize)] struct Wrapper { #[xmlserde(name = b"header", ty = "attr")] header: String, #[xmlserde(ty = "untag")] body: T, } ``` The above struct Wrapper is a generic struct, T can...