pub trait EncodeXml {
// Required method
fn encode_xml(&self) -> Result<String, Error>;
}Expand description
A helper trait for encoding types into an XML representation
pub trait EncodeXml {
// Required method
fn encode_xml(&self) -> Result<String, Error>;
}A helper trait for encoding types into an XML representation