Struct headers_ext::Te [−][src]
pub struct Te(_);
TE header, defined in
RFC7230
As RFC7230 states, "The "TE" header field in a request indicates what transfer codings, besides chunked, the client is willing to accept in response, and whether or not the client is willing to accept trailer fields in a chunked transfer coding."
For HTTP/1.1 compliant clients chunked transfer codings are assumed to be acceptable and
so should never appear in this header.
ABNF
TE = "TE" ":" #( t-codings )
t-codings = "trailers" | ( transfer-extension [ accept-params ] )
Example values
trailerstrailers, deflate;q=0.5- ``
Examples
Methods
impl Te[src]
impl TeTrait Implementations
impl Clone for Te[src]
impl Clone for Tefn clone(&self) -> Te[src]
fn clone(&self) -> TeReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for Te[src]
impl Debug for Tefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Te[src]
impl PartialEq for Te