xavier_internal/serialize/
macro_trait.rs

1
2pub trait XmlSerializable {
3    fn to_xml(&self, root: bool) -> String;
4}
5