xmlserde icon indicating copy to clipboard operation
xmlserde copied to clipboard

A user-friendly Rust library for serializing or deserializing the XML files

Results 4 xmlserde issues
Sort by recently updated
recently updated
newest added

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...

dependencies

``` #[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...

Updates the requirements on [quick-xml](https://github.com/tafia/quick-xml) to permit the latest version. Changelog Sourced from quick-xml's changelog. 0.38.0 -- 2025-06-28 Significant changes Now references to entities (as predefined, such as <, as...

dependencies
rust