Skip to main content

Module parser

Module parser 

Source
Expand description

Streaming XML parser — DDS-XML 1.0 §6.2.

Spec §6.2: the XML wire must honor XML 1.0 + Namespaces 1.0. We provide a streaming parser without DOM buffering that emits events (StartElement/EndElement/Text/Cdata).

Structs§

XmlParser
Streaming XML parser — input is &str, output is an iterator of Result<Event, ParseError>.

Enums§

Event
Parser-Event.
ParseError
Parser error.