Expand description
Module containing implementations for conversions to/from XML text.
Structs§
- Base64
base64
- Text codec transforming text to binary using standard base64.
- Colon
Separated Hex - Text codec for colon-separated bytes of uppercase hexadecimal.
- Empty
AsError - Text codec which returns None instead of the empty string.
- Empty
AsNone - 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.
- Fixed
Hex - Text codec transforming text to binary using hexadecimal nibbles.
- NoFilter
- Text preprocessor which returns the input unchanged.
- Plain
- Text codec which does no transform.
- Strip
Whitespace - Text preprocessor to remove all whitespace.
Traits§
- Text
Codec - Represent a way to encode/decode text data into a Rust type.
- Text
Filter - Trait for preprocessing text data from XML.