[][src]Struct xml::writer::EventWriter

pub struct EventWriter<W> { /* fields omitted */ }

A wrapper around an std::io::Write instance which emits XML document according to provided events.

Methods

impl<W: Write> EventWriter<W>[src]

pub fn new(sink: W) -> EventWriter<W>[src]

Creates a new EventWriter out of an std::io::Write instance using the default configuration.

pub fn new_with_config(sink: W, config: EmitterConfig) -> EventWriter<W>[src]

Creates a new EventWriter out of an std::io::Write instance using the provided configuration.

pub fn write<'a, E>(&mut self, event: E) -> Result<()> where
    E: Into<XmlEvent<'a>>, 
[src]

Writes the next piece of XML document according to the provided event.

Note that output data may not exactly correspond to the written event because of various configuration options. For example, XmlEvent::EndElement may correspond to a separate closing element or it may cause writing an empty element. Another example is that XmlEvent::CData may be represented as characters in the output stream.

pub fn inner_mut(&mut self) -> &mut W[src]

Returns a mutable reference to the underlying Writer.

Note that having a reference to the underlying sink makes it very easy to emit invalid XML documents. Use this method with care. Valid use cases for this method include accessing methods like Write::flush, which do not emit new data but rather change the state of the stream itself.

pub fn into_inner(self) -> W[src]

Unwraps this EventWriter, returning the underlying writer.

Note that this is a destructive operation: unwrapping a writer and then wrapping it again with EventWriter::new() will create a fresh writer whose state will be blank; for example, accumulated namespaces will be reset.

Auto Trait Implementations

impl<W> RefUnwindSafe for EventWriter<W> where
    W: RefUnwindSafe

impl<W> Send for EventWriter<W> where
    W: Send

impl<W> Sync for EventWriter<W> where
    W: Sync

impl<W> Unpin for EventWriter<W> where
    W: Unpin

impl<W> UnwindSafe for EventWriter<W> where
    W: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.