Trait xso::AsOptionalXmlText

source ·
pub trait AsOptionalXmlText {
    // Required method
    fn as_optional_xml_text(&self) -> Result<Option<Cow<'_, str>>, Error>;
}
Expand description

Specialized variant of AsXmlText.

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

If you need to customize the behaviour of the AsOptionalXmlText blanket implementation, implement a custom AsXmlText::as_optional_xml_text instead.

Required Methods§

source

fn as_optional_xml_text(&self) -> Result<Option<Cow<'_, str>>, 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: AsXmlText> AsOptionalXmlText for Option<T>

Implementors§