xavier_internal/serialize/
macro_trait.rs

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