4 releases (2 breaking)
0.2.0-alpha.1 | Aug 8, 2019 |
---|---|
0.1.1 | Apr 22, 2019 |
0.1.0 | Feb 24, 2019 |
0.0.0 | Aug 20, 2018 |
#2157 in Asynchronous
40,353 downloads per month
Used in 1,065 crates
(4 directly)
26KB
548 lines
tokio-buf
Asynchronous stream of byte buffers
License
This project is licensed under the MIT license.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Tokio by you, shall be licensed as MIT, without any additional terms or conditions.
lib.rs
:
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).
Dependencies
~405KB