logo
pub trait ToXML: Type {
    fn to_xml(&self) -> Option<Value>;

    fn to_xml_string(&self) -> String { ... }
}
Expand description

Represents a type that can converted to XML value.

Required Methods

Convert this value to Value.

Provided Methods

Convert this value to JSON string.

Implementations on Foreign Types

Implementors