Module string
Structs§
- From
ToString Codec - A string codec that relies on
FromStr
andToString
. It can encode anything that implementsToString
and decode anything that implementsFromStr
. - Json
Serde Codec - A codec for encoding JSON messages that relies on
serde_json
. - Option
Codec - Wraps a string codec that encodes
T
to create a codec that encodesOption<T>
.