xmlserde
xmlserde
is a tool for serializing or deserializing xml struct.
It is designed for LogiSheets, which is a spreadsheets application working on the browser.
You can check the detail of usage in the workbook
directory or here.
How to use xmlserde
xmlserde
offers a range of macros that should suffice for most use cases. To utilize them, you need to include the following crates in your Cargo.toml
file:
= 0.7.1
= 0.7.1
Deserialize
Start from deserializing would be easier to get closer to xmlserde
.
Given the xml struct as below,
Tom
We can deserialize with these code:
use xmlserde_derives: XmlDerserialize
You are supposed to declare that where the deserializer is to look for the values.
The commonly available types are attr, text and child. In the above example, we instruct to program to navigate into the tag named person
(using xml_deserialize_from_str
), and to search for an attribute
with the key age
. Additionally it specifies that the content of the text element represents the value of the field `name``.
You can specify the entry element for serialization/deserialization with xmlserde by using the annotation like #[xmlserde(root = b"person")]
, thereby telling the program that the person
element is the root for serde operations.
Below is an example illustrating how to deserialize a nested XML element:
In the given example, we specify that the value of the name
field is to be extracted from a child element tagged as <name>
.
Consequently, the program will navigate into the <name>
element and proceed with recursive deserialization.
Additionally, we specify that if the deserializer does not find a value for lefty
, the default value for lefty
should be set to false.
Vec
We support deserialize the fields whose types are std::Vec<T: XmlDeserialize>
.
When the deserializer find the pet element, and it will know that this is an element of pets. You can even assign the capacity of the Vec
with following:
#[xmlserde(name = b"pet", ty="child", vec_size=3)]
If the capacity is from an attr, you can:
#[xmlserde(name = b"pet", ty="child", vec_size="pet_count")]
Enum
We provide 2 patterns for deserializing Enum
.
PersonA can be used to deserialize the xml struct like below:
or
And PersonB can be used to deserialize the xml which looks like:
or
You can use untag to Option<T> or Vec<T> where T is an Enum.
It means that the example below is legal:
Unparsed
In situations where certain XML elements are not immediately relevant, but you wish to retain them for future serialization, we offer the Unparsed
struct
for this purpose.
use Unparsed;
Serialize
Serialization is largely similar to deserialization. However, there are several key features that require consideration.
-
default values will be skipped serializing. If it is a struct, it should be implemented
Eq
trait. -
If a struct has no child or text, the result of serializing will look like this:
Custom xmlserde
xmlserde
offers the trait XmlSerialize
and XmlDeserialize
, allowing you
to dictate a struct's serialization and deserialization behavior by implementing
these traits.
At present, only built-in types are permitted for use as attributes. To enable custom types for use in attributes, you can implement the XmlValue
trait on those types.
Enum for string type
xmlserde
also provides a macro called xml_serde_enum
to serde enum
for string type.
xml_serde_enum
defines an enum
and specifies the behavior of serialization and deserialization.
use xml_serde_enum;
xml_serde_enum!