Trait uddf_sdk::utils::xml::ToXml

source ·
pub trait ToXml {
    // Required method
    fn to_xml(&self) -> String;
}

Required Methods§

source

fn to_xml(&self) -> String

Convert the struct to an XML string.

Implementors§

source§

impl<T> ToXml for T
where T: Serialize,