39 releases

0.12.0 Nov 5, 2024
0.11.1 Sep 16, 2024
0.10.1 Jun 5, 2024
0.10.0 Feb 5, 2024
0.3.1 May 30, 2018

#795 in Procedural macros

Download history 4103/week @ 2024-07-31 3515/week @ 2024-08-07 4328/week @ 2024-08-14 4704/week @ 2024-08-21 7120/week @ 2024-08-28 8939/week @ 2024-09-04 5737/week @ 2024-09-11 4938/week @ 2024-09-18 5838/week @ 2024-09-25 6192/week @ 2024-10-02 5077/week @ 2024-10-09 4830/week @ 2024-10-16 5062/week @ 2024-10-23 5455/week @ 2024-10-30 5522/week @ 2024-11-06 4810/week @ 2024-11-13

21,916 downloads per month
Used in 48 crates (21 directly)

MIT license

86KB
2.5K SLoC

yaserde   Latest Version

Yet Another Serializer/Deserializer specialized for XML

Goal

This library will support XML de/ser-ializing with all specific features.

Supported types

  • Struct
  • Vec
  • Enum
  • Enum with complex types
  • Option
  • String
  • bool
  • number (u8, i8, u32, i32, f32, f64)

Attributes

  • attribute: this field is defined as an attribute
  • default: defines the default function to init the field
  • flatten: Flatten the contents of the field
  • namespace: defines the namespace of the field
  • rename: be able to rename a field
  • root: rename the based element. Used only at the XML root.
  • skip_serializing: Exclude this field from the serialized output. More details...
  • skip_serializing_if: Skip the serialisation for this field if the condition is true. More details...
  • text: this field match to the text content

Custom De/Ser-rializer

Any type can define a custom deserializer and/or serializer. To implement it, define the implementation of YaDeserialize/YaSerialize

impl YaDeserialize for MyType {
  fn deserialize<R: Read>(reader: &mut yaserde::de::Deserializer<R>) -> Result<Self, String> {
    // deserializer code
  }
}

impl YaSerialize for MyType {
  fn serialize<W: Write>(&self, writer: &mut yaserde::ser::Serializer<W>) -> Result<(), String> {
    // serializer code
  }
}

Dependencies

~0.7–1.3MB
~30K SLoC