buf-list 1.0.0
Added
BufList
now implementsExtend<B: Buf>
. This means you can now collect a stream ofBytes
, or otherBuf
chunks, directly into aBufList
viaStreamExt::collect
.- Collecting a fallible stream is also possible, via
TryStreamExt::try_collect
.
- Collecting a fallible stream is also possible, via
Changed
push_chunk
now has a type parameterB: Buf
rather thanimpl Buf
.