Trait epp_client::epp::xml::EppXml[][src]

pub trait EppXml {
    type Output: Debug;
    fn serialize(&self) -> Result<String, Box<dyn Error>>;
fn deserialize(epp_xml: &str) -> Result<Self::Output, Error>; }
Expand description

Trait to be implemented by serializers. Currently the only included serializer is quick-xml

Associated Types

Required methods

Implementors