Derive Macro xso::FromXml

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

§Make a struct or enum parseable from XML

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

§Example

static MY_NAMESPACE: &str = "urn:example";

#[derive(FromXml, Debug, PartialEq)]
#[xml(namespace = MY_NAMESPACE, name = "foo")]
struct Foo;

let foo: Foo = xso::from_bytes(b"<foo xmlns='urn:example'/>").unwrap();
assert_eq!(foo, Foo);

§Attributes

The derive macros need to know which XML namespace and name the elements it is supposed have. This must be specified via key-value pairs on the type the derive macro is invoked on. These are specified as Rust attributes. In order to disambiguate between XML attributes and Rust attributes, we are going to refer to Rust attributes using the term meta instead, which is consistent with the Rust language reference calling that syntax construct meta.

All key-value pairs interpreted by these derive macros must be wrapped in a #[xml( ... )] meta. The following keys are defined on structs:

KeyValue typeDescription
namespacepathThe path to a &'static str which holds the XML namespace to match.
namestring literalThe XML element name to match.

§Limitations

Supports only empty structs currently. For example, the following will not work:

#[derive(FromXml, Debug, PartialEq)]
#[xml(namespace = MY_NAMESPACE, name = "foo")]
struct Foo {
    some_field: String,
}

Macro to derive a xso::FromXml implementation on a type.

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