pub trait IntoXml {
// Required method
fn into_tree(self) -> Option<Element>;
}
Expand description
Convert a struct into an XML tree.
This trait is what is really implemented by the IntoXml
derive
macro.
Required Methods§
sourcefn into_tree(self) -> Option<Element>
fn into_tree(self) -> Option<Element>
Destruct the value into an optional minidom::Element
.
When returning None
, no element will appear in the output. This
should only be used for values which can be constructed via
FromXml::absent
in order to ensure that the result can be parsed
again.