Module text

Source
Expand description

Module containing implementations for conversions to/from XML text.

Structs§

Base64base64
Text codec transforming text to binary using standard base64.
ColonSeparatedHex
Text codec for colon-separated bytes of uppercase hexadecimal.
EmptyAsError
Text codec which returns None instead of the empty string.
EmptyAsNone
Text codec which returns None if the input to decode is the empty string, instead of attempting to decode it.
Filtered
Wrapper struct to apply a filter to a codec.
FixedHex
Text codec transforming text to binary using hexadecimal nibbles.
NoFilter
Text preprocessor which returns the input unchanged.
Plain
Text codec which does no transform.
StripWhitespace
Text preprocessor to remove all whitespace.

Traits§

TextCodec
Represent a way to encode/decode text data into a Rust type.
TextFilter
Trait for preprocessing text data from XML.