Expand description
Asynchronous access to a bincode-encoded item stream using futures_io
. See the top-level
documentation and the documentation for AsyncBincodeReader
, AsyncBincodeWriter
, and
AsyncBincodeStream
.
Re-exports§
pub use crate::writer::BincodeWriterFor;
Structs§
- Async
Bincode Reader - A wrapper around an asynchronous reader that produces an asynchronous stream of bincode-decoded values.
- Async
Bincode Stream - A wrapper around an asynchronous stream that receives and sends bincode-encoded values.
- Async
Bincode Writer - A wrapper around an asynchronous sink that accepts, serializes, and sends bincode-encoded values.
- Async
Destination - A marker that indicates that the wrapping type is compatible with
AsyncBincodeReader
. - Sync
Destination - A marker that indicates that the wrapping type is compatible with stock
bincode
receivers.