Trait TextCodec

Source
pub trait TextCodec<T> {
    // Required methods
    fn decode(&self, s: String) -> Result<T, Error>;
    fn encode<'x>(&self, value: &'x T) -> Result<Option<Cow<'x, str>>, Error>;

    // Provided method
    fn filtered<F: TextFilter>(self, filter: F) -> Filtered<F, Self, T>
       where Self: Sized { ... }
}
Expand description

Represent a way to encode/decode text data into a Rust type.

This trait can be used in scenarios where implementing FromXmlText and/or AsXmlText on a type is not feasible or sensible, such as the following:

  1. The type originates in a foreign crate, preventing the implementation of foreign traits.

  2. There is more than one way to convert a value to/from XML.

The codec to use for a text can be specified in the attributes understood by FromXml and AsXml derive macros. See the documentation of the FromXml derive macro for details.

Required Methods§

Source

fn decode(&self, s: String) -> Result<T, Error>

Decode a string value into the type.

Source

fn encode<'x>(&self, value: &'x T) -> Result<Option<Cow<'x, str>>, Error>

Encode the type as string value.

If this returns None, the string value is not emitted at all.

Provided Methods§

Source

fn filtered<F: TextFilter>(self, filter: F) -> Filtered<F, Self, T>
where Self: Sized,

Apply a filter to this codec.

Filters preprocess strings before they are handed to the codec for parsing, allowing to, for example, make the codec ignore irrelevant content by stripping it.

Implementors§

Source§

impl TextCodec<String> for EmptyAsError

Source§

impl TextCodec<String> for Plain

Source§

impl TextCodec<Vec<u8>> for Base64

Available on crate feature base64 only.
Source§

impl TextCodec<Vec<u8>> for ColonSeparatedHex

Source§

impl<'a, T, U> TextCodec<Option<U>> for T
where T: TextCodec<U> + Engine,

Available on crate feature base64 only.
Source§

impl<'x> TextCodec<Cow<'x, [u8]>> for Base64

Available on crate feature base64 only.
Source§

impl<T> TextCodec<Option<T>> for Base64
where Base64: TextCodec<T>,

Available on crate feature base64 only.
Source§

impl<T> TextCodec<Option<T>> for EmptyAsNone

Source§

impl<T, F: TextFilter, C: TextCodec<T>> TextCodec<T> for Filtered<F, C, T>

Source§

impl<T, const N: usize> TextCodec<Option<T>> for FixedHex<N>
where FixedHex<N>: TextCodec<T>,

Source§

impl<T: Engine> TextCodec<Vec<u8>> for T

Available on crate feature base64 only.
Source§

impl<const N: usize> TextCodec<[u8; N]> for FixedHex<N>