pub trait XmlWrite { // Required method fn to_writer<W: Write>(&self, writer: &mut XmlWriter<W>) -> XmlResult<()>; // Provided method fn to_string(&self) -> XmlResult<String> { ... } }