Trait xso::IntoOptionalXmlText

source ·
pub trait IntoOptionalXmlText {
    // Required method
    fn into_optional_xml_text(self) -> Result<Option<String>, Error>;
}
Expand description

Specialized variant of IntoXmlText.

Do not implement this unless you cannot implement IntoXmlText: implementing IntoXmlText is more versatile and an IntoOptionalXmlText implementation is automatically provided.

If you need to customize the behaviour of the IntoOptionalXmlText blanket implementation, implement a custom IntoXmlText::into_optional_xml_text instead.

Required Methods§

source

fn into_optional_xml_text(self) -> Result<Option<String>, Error>

Convert the value to an XML string in a context where an absent value can be represented.

Implementations on Foreign Types§

source§

impl<T: IntoOptionalXmlText> IntoOptionalXmlText for Option<T>

Implementors§