Expand description
Asynchronous stream of bytes.
This crate contains the BufStream
trait and a number of combinators for
this trait. The trait is similar to Stream
in the futures
library, but
instead of yielding arbitrary values, it only yields types that implement
Buf
(i.e, byte collections).
Modules
Types and utilities for working with BufStream
.
Structs
A BufStream
size hint
Traits
An asynchronous stream of bytes.
An extension trait for BufStream
’s that provides a variety of convenient
adapters.