Structs§
- Base64
- Wraps a binary codec and make it a string codec by representing the binary data as a base64 string.
- 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
. - Json
Serde Wasm Codec - A codec for encoding with
serde_json
and decoding using [serde-wasm-bindgen
]. - Miniserde
Codec - A codec that relies on
miniserde
to encode data in the json format. - Option
Codec - Wraps a string codec that encodes
T
to create a codec that encodesOption<T>
.