xso

Trait AsXmlText

Source
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 core::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§

Source

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

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

Provided 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.

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.

Implementations on Foreign Types§

Source§

impl AsXmlText for IpAddr

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::net::IpAddr to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for SocketAddr

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::net::SocketAddr to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for bool

This provides an implementation compliant with xsd::bool.

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert a boolean to XML text.

true is converted to "true" and false is converted to "false". This implementation never fails.

Source§

impl AsXmlText for char

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert char to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for f32

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert f32 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for f64

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert f64 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for i8

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert i8 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for i16

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert i16 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for i32

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert i32 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for i64

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert i64 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for i128

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert i128 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for isize

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert isize to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for str

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Return the borrowed string contents.

Source§

impl AsXmlText for u8

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert u8 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for u16

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert u16 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for u32

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert u32 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for u64

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert u64 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for u128

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert u128 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for usize

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert usize to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for String

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Return the borrowed string contents.

Source§

impl AsXmlText for Ipv4Addr

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::net::Ipv4Addr to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for Ipv6Addr

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::net::Ipv6Addr to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for SocketAddrV4

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::net::SocketAddrV4 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for SocketAddrV6

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::net::SocketAddrV6 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for Uuid

Available on crate feature uuid only.
Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert uuid::Uuid to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for NonZeroI8

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::num::NonZeroI8 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for NonZeroI16

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::num::NonZeroI16 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for NonZeroI32

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::num::NonZeroI32 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for NonZeroI64

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::num::NonZeroI64 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for NonZeroI128

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::num::NonZeroI128 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for NonZeroIsize

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::num::NonZeroIsize to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for NonZeroU8

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::num::NonZeroU8 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for NonZeroU16

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::num::NonZeroU16 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for NonZeroU32

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::num::NonZeroU32 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for NonZeroU64

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::num::NonZeroU64 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for NonZeroU128

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::num::NonZeroU128 to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for NonZeroUsize

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert core::num::NonZeroUsize to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for BareJid

Available on crate feature jid only.
Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert [jid::BareJid] to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for FullJid

Available on crate feature jid only.
Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert [jid::FullJid] to XML text via Display.

This implementation never fails.

Source§

impl AsXmlText for Jid

Available on crate feature jid only.
Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Convert [jid::Jid] to XML text via Display.

This implementation never fails.

Source§

impl<B: AsXmlText + ToOwned> AsXmlText for Cow<'_, B>

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Return the borrowed Cow contents.

Source§

impl<T: AsXmlText> AsXmlText for &T

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Delegate to the AsXmlText implementation on T.

Source§

impl<T: AsXmlText> AsXmlText for Box<T>

Source§

fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>

Return the borrowed Box contents.

Implementors§