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

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

Required Methods

Provided Methods

Implementors