#serialization #traits #deserializing #deserialized #async-writes #async-reads

async-serialization

Traits for serializing into AsyncWrites and deserializing from AsyncReads

5 releases

Uses old Rust 2015

0.2.2 Mar 15, 2018
0.2.1 Mar 14, 2018
0.2.0 Mar 14, 2018
0.1.1 Mar 14, 2018
0.1.0 Mar 14, 2018

#4 in #deserialized

MIT license

7KB
70 lines

Deprecated

This was a failed attempt at finding a suitable abstraction. The async-codec crate might be what you need instead.

Async Serialization

Traits for types that can be asynchronously serialized into AsyncWrites and deserialized from AsyncReads. Unlike serde's approach, the serialized data does not need to be in memory at once, and it saves a step of copying.


lib.rs:

Traits for types that can be asynchronously serialized into AsyncWrites and deserialized from AsyncReads. Unlike serde's approach, the serialized data does not need to be in memory at once, and it saves a step of copying.

Dependencies

~56KB