This crate implements a zero-copy, zero-allocation writer for HTTP chunked response
bodies. The result can be written
directly into a
TcpStream
or any
other object that implements
Write
.
Example
use ChunkedWrite;
use Write;
let mut buf = ;
assert_eq!;