Trait xml_builder::ToXMLElement [−][src]
pub trait ToXMLElement {
fn to_xmlelement(self) -> Result<XMLElement>;
}Expand description
A trait for converting (and consuming) a value to a XMLElement.
This trait should be implemented by all concrete types needed to be converted to a XMLElement.
Required methods
fn to_xmlelement(self) -> Result<XMLElement>
fn to_xmlelement(self) -> Result<XMLElement>
Converts the given value to a XMLElement.