# yaserde   [![Latest Version]][crates.io] [Latest Version]: https://img.shields.io/crates/v/yaserde.svg [crates.io]: https://crates.io/crates/yaserde **Yet Another Serializer/Deserializer specialized for XML** ## Goal This library will support XML de/ser-ializing with all specific features. ## Supported types - [x] Struct - [x] Vec - [x] Enum - [x] Enum with complex types - [x] Option - [x] String - [x] bool - [x] number (u8, i8, u32, i32, f32, f64) ## Attributes - [x] **attribute**: this field is defined as an attribute - [x] **default**: defines the default function to init the field - [x] **flatten**: Flatten the contents of the field - [x] **namespace**: defines the namespace of the field - [x] **rename**: be able to rename a field - [x] **root**: rename the based element. Used only at the XML root. - [x] **skip_serializing**: Exclude this field from the serialized output. [More details...](doc/skip_serializing.md) - [x] **skip_serializing_if**: Skip the serialisation for this field if the condition is true. [More details...](doc/skip_serializing.md) - [x] **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 ```rust impl YaDeserialize for MyType { fn deserialize(reader: &mut yaserde::de::Deserializer) -> Result { // deserializer code } } ``` ```rust impl YaSerialize for MyType { fn serialize(&self, writer: &mut yaserde::ser::Serializer) -> Result<(), String> { // serializer code } } ```