Module xml::reader [] [src]

Contains high-level interface for a pull-based XML parser.

The most important type in this module is EventReader, which provides an iterator view for events in XML document.

Reexports

pub use self::config::ParserConfig;

Modules

config

Contains parser configuration structure.

events

Contains XmlEvent datatype, instances of which are emitted by the parser.

Structs

EventReader

Simple wrapper around an std::io::BufReader which provides pull-based XML parsing.

Events

XML events iterator, created by events() method on Parser.