pub type ByteStream = Streaming<Bytes>;Expand description
A stream of binary data.
§Chunking
Note that bytes sent by the server might not arrive in the same chunking as they were sent. This is because the underlying transport layer (HTTP/2 or HTTP/3) may choose to split or combine chunks for efficiency.
If you need to preserve individual byte boundaries, consider using ChunkedByteStream or another
encoding that preserves chunk boundaries.
Aliased Type§
pub struct ByteStream { /* private fields */ }