Crate async_serialization [] [src]

Deprecated

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.

Enums

DeserializeError [
Deprecated
]

An error that occured during deserialization.

Traits

AsyncDeserialize [
Deprecated
]

A future that asynchronously serializes something from a wrapped AsyncRead and then returns the wrapped AsyncRead, the deserialized value, and how many bytes were read.

AsyncSerialize [
Deprecated
]

A future that asynchronously serializes something into a wrapped AsyncWrite and then returns the wrapped AsyncWrite and how many bytes were written.

AsyncSerializeLen [
Deprecated
]

An AsyncSerialize that can precompute the exact number of bytes to write.

AsyncSerializeRef [
Deprecated
]

A future that asynchronously serializes something by reference into a wrapped AsyncWrite.

AsyncSerializeRefLen [
Deprecated
]

An AsyncSerializeRef that can precompute the exact number of bytes to write.

AsyncWriterFuture [
Deprecated
]

Base trait for futures that write things into AsyncWrites.

AsyncWriterFutureLen [
Deprecated
]

Base trait for futures that write things into AsyncWrites and can precompute the exact number of bytes to write.