Struct hyper::header::TransferEncoding
[-] [+]
[src]
pub struct TransferEncoding(pub Vec<Encoding>);
The Transfer-Encoding
header.
This header describes the encoding of the message body. It can be comma-separated, including multiple encodings.
Transfer-Encoding: gzip, chunked
According to the spec, if a Content-Length
header is not included,
this header should include chunked
as the last encoding.
The implementation uses a vector of Encoding
values.