Enum hyper::header::common::transfer_encoding::EncodingExperimental
[-]
[+]
[src]
pub enum Encoding {
Chunked,
Gzip,
Deflate,
Compress,
EncodingExt(String),
}A value to be used with the Transfer-Encoding header.
Example:
headers.set(TransferEncoding(vec![Gzip, Chunked]));
Variants
Chunked | The |
Gzip | The |
Deflate | The |
Compress | The |
EncodingExt | Some other encoding that is less common, can be any String. |