Derive Macro xso::IntoXml

#[derive(IntoXml)]
{
    // Attributes available to this derive:
    #[xml]
}
Expand description

ยงMake a struct or enum serialisable to XML

This derives the IntoXml trait on a struct or enum. It is the counterpart to FromXml.

The attributes necessary and available for the derivation to work are documented on FromXml. Macro to derive a xso::IntoXml implementation on a type.

The user-facing documentation for this macro lives in the xso crate.