Expand description
feature=serde
serde Serializer implementations
Structs§
- Serializer
Sync - Msgpackin serde SerializerSync
- Serializer
Sync Container - Serializer for containers like arr/map
- Serializer
Sync Ref - Reference type for a sync serializer
Functions§
- to_
async - Serialize asynchronously to anything that can be converted into a
DynConsumerAsync
, e.g.AsyncWrite
. Note, as serde only supplies a synchronous api for now, this function will buffer the serialized bytes first, then write them to the async consumer - to_
async_ config - Serialize asynchronously to anything that can be converted into a
DynConsumerAsync
, e.g.AsyncWrite
. Note, as serde only supplies a synchronous api for now, this function will buffer the serialized bytes first, then write them to the async consumer - to_
bytes - Serialize to a
Vec<u8>
- to_
bytes_ config - Serialize to a
Vec<u8>
- to_sync
- Serialize synchronously to anything that can be converted into a
DynConsumerSync
, e.g.Write
- to_
sync_ config - Serialize synchronously to anything that can be converted into a
DynConsumerSync
, e.g.Write