Struct xml::reader::EventReader [] [src]

pub struct EventReader<R: Read> {
    // some fields omitted
}

A wrapper around an std::io::Read instance which provides pull-based XML parsing.

Methods

impl<R: Read> EventReader<R>
[src]

fn new(source: R) -> EventReader<R>

Creates a new reader, consuming the given stream.

fn new_with_config(source: R, config: ParserConfig) -> EventReader<R>

Creates a new reader with the provded configuration, consuming the given stream.

fn next(&mut self) -> Result<XmlEvent>

Pulls and returns next XML event from the stream.

If returned event is XmlEvent::Error or XmlEvent::EndDocument, then further calls to this method will return this event again.

fn source(&self) -> &R

fn source_mut(&mut self) -> &mut R

fn into_inner(self) -> R

Unwraps this EventReader, returning the underlying reader.

Note that this operation is destructive; unwrapping the reader and wrapping it again with EventReader::new() will create a fresh reader which will attempt to parse an XML document from the beginning.

impl<'r> EventReader<&'r [u8]>
[src]

fn from_str(source: &'r str) -> EventReader<&'r [u8]>

A convenience method to create an XmlReader from a string slice.

Trait Implementations

impl<B: Read> Position for EventReader<B>
[src]

fn position(&self) -> TextPosition

Returns the position of the last event produced by the reader.

impl<R: Read> IntoIterator for EventReader<R>
[src]

type Item = Result<XmlEvent>

The type of the elements being iterated over.

type IntoIter = Events<R>

Which kind of iterator are we turning this into?

fn into_iter(self) -> Events<R>

Creates an iterator from a value. Read more