Crate xso

source ·
Expand description

§Core types, macros and traits for parsing structs from XML

This crate provides the facilities for parsing XML data into Rust structs, and vice versa. Think of it as an alternative1 to serde, more suited to XML.

To get started, use the FromXml and IntoXml derive macros on your struct. See in particular the documentation of FromXml for a full reference on the supported attributes.

XSO is an acronym for XML Stream(ed) Objects, referring to the main field of use of this library in parsing XML streams like specified in RFC 6120.


  1. Though it should be said that you can combine serde and this crate on the same struct, no problem with that! 

Modules§

  • Error types for parsing and serialisation.
  • Implementations of traits from this crate for minidom types

Structs§

  • Text codec transforming text to binary using standard base64.
  • Text codec transforming text to binary by emitting it as colon-separated hex value.
  • Discard the value and do not emit a value.
  • FromEventsBuilder implementation which consumes and discards the entire XML element.
  • Text codec which returns None instead of the empty string.
  • Codec for bytes of lowercase hexadecimal, with a fixed length N (in bytes).
  • Text preprocessor which returns the input unchanged.
  • Shim wrapper around String which refuses to parse if the string is empty
  • Event iterator for Option<T>.
  • Builder to construct an Option<T> from XML events.
  • Text codec which does no transform.
  • Text preprocessor to remove all whitespace.
  • Text codec which trims whitespace at the beginning and the end of the text.

Enums§

Traits§

Functions§

Derive Macros§

  • Make a struct fully dynamically namespaceable
  • Make a struct or enum parseable from XML
  • Make a struct or enum convertible into XML