Crate xso

source ·
Expand description

§XML Streamed Objects – serde-like parsing for XML

This crate provides the traits for parsing XML data into Rust structs, and vice versa.

While it is in 0.0.x versions, many features still need to be developed, but rest assured that there is a solid plan to get it fully usable for even advanced XML scenarios.

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.

Modules§

  • Generic iterator type implementations
  • Error types for XML parsing
  • Generic builder type implementations
  • Implementations of traits from this crate for minidom types
  • Module containing implementations for conversions to/from XML text.

Enums§

  • An encodable item.

Traits§

Functions§

  • Attempt to parse a type implementing FromXml from a byte buffer containing XML data.
  • Return true if the string contains exclusively XML whitespace.
  • Attempt to serialise a type implementing AsXml to a vector of bytes.
  • Attempt to transform a type implementing AsXml into another type which implements FromXml.
  • Attempt to convert a [minidom::Element] into a type implementing FromXml, fallably.

Derive Macros§

  • AsXmlmacros
    Make a struct or enum serialisable to XML
  • FromXmlmacros
    Make a struct or enum parseable from XML