Trait xso::TextCodec

source ·
pub trait TextCodec<T> {
    // Required methods
    fn decode(s: &str) -> Result<T, Error>;
    fn encode(value: T) -> Option<String>;
}
Expand description

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

This trait is used to specify how a given type is serialised into and from a string. This bypasses the FromXmlText / IntoXmlText traits, allowing to hide the specific implementation for transforming data from text into Rust types (and back) from a container’s public interface.

Required Methods§

source

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

Decode a string value into the type.

source

fn encode(value: T) -> Option<String>

Encode the type as string value.

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl TextCodec<Option<String>> for EmptyAsNone

source§

impl TextCodec<String> for NonEmptyString

Text codec which rejects empty strings.

source§

impl TextCodec<String> for Plain

source§

impl TextCodec<Vec<u8>> for ColonSeparatedHex

source§

impl TextCodec<Vec<u8>> for Hex

source§

impl<Filter: TextFilter> TextCodec<Option<Vec<u8>>> for Base64<Filter>

source§

impl<Filter: TextFilter> TextCodec<Vec<u8>> for Base64<Filter>

source§

impl<Inner: TextCodec<String>> TextCodec<String> for Trimmed<Inner>

source§

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

source§

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