Struct serde_xml_rs::EventReader
source · [−]pub struct EventReader<R> where
R: Read, { /* private fields */ }
Expand description
A wrapper around an std::io::Read
instance which provides pull-based XML parsing.
Implementations
sourceimpl<R> EventReader<R> where
R: Read,
impl<R> EventReader<R> where
R: Read,
sourcepub fn new(source: R) -> EventReader<R>
pub fn new(source: R) -> EventReader<R>
Creates a new reader, consuming the given stream.
sourcepub fn new_with_config(source: R, config: ParserConfig) -> EventReader<R>
pub fn new_with_config(source: R, config: ParserConfig) -> EventReader<R>
Creates a new reader with the provded configuration, consuming the given stream.
sourcepub fn next(&mut self) -> Result<XmlEvent, Error>
pub fn next(&mut self) -> Result<XmlEvent, Error>
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.
pub fn source(&self) -> &R
pub fn source_mut(&mut self) -> &mut R
sourcepub fn into_inner(self) -> R
pub 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.
sourceimpl<'r> EventReader<&'r [u8]>
impl<'r> EventReader<&'r [u8]>
sourcepub fn from_str(source: &'r str) -> EventReader<&'r [u8]>
pub fn from_str(source: &'r str) -> EventReader<&'r [u8]>
A convenience method to create an XmlReader
from a string slice.
Trait Implementations
sourceimpl<R> IntoIterator for EventReader<R> where
R: Read,
impl<R> IntoIterator for EventReader<R> where
R: Read,
sourceimpl<B> Position for EventReader<B> where
B: Read,
impl<B> Position for EventReader<B> where
B: Read,
sourcefn position(&self) -> TextPosition
fn position(&self) -> TextPosition
Returns the position of the last event produced by the reader.
Auto Trait Implementations
impl<R> !RefUnwindSafe for EventReader<R>
impl<R> Send for EventReader<R> where
R: Send,
impl<R> Sync for EventReader<R> where
R: Sync,
impl<R> Unpin for EventReader<R> where
R: Unpin,
impl<R> !UnwindSafe for EventReader<R>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more