Trait hard_xml::XmlWrite

source ·
pub trait XmlWrite {
    // Required method
    fn to_writer<W: Write>(&self, writer: &mut XmlWriter<W>) -> XmlResult<()>;

    // Provided method
    fn to_string(&self) -> XmlResult<String> { ... }
}

Required Methods§

source

fn to_writer<W: Write>(&self, writer: &mut XmlWriter<W>) -> XmlResult<()>

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§