pub trait AsXmlText {
// Required method
fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>;
// Provided method
fn as_optional_xml_text(&self) -> Result<Option<Cow<'_, str>>, Error> { ... }
}
Expand description
Trait to convert a value to an XML text string.
This trait is implemented for many standard library types implementing
std::fmt::Display
. In addition, the following feature flags can enable
more implementations:
jid
:jid::Jid
,jid::BareJid
,jid::FullJid
uuid
:uuid::Uuid
Because of the unfortunate situation as described in FromXmlText
, we
are extremely liberal with accepting optional dependencies for this
purpose. You are very welcome to make merge requests against this crate
adding support for parsing third-party crates.
Required Methods§
Provided Methods§
sourcefn as_optional_xml_text(&self) -> Result<Option<Cow<'_, str>>, Error>
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.
The provided implementation will always return the result of
Self::as_xml_text
wrapped into Some(.)
. By re-implementing
this method, implementors can customize the behaviour for certain
values.