pub struct Te(/* private fields */);
Expand description
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
trailers
trailers, deflate;q=0.5
- ``
§Examples
Implementations§
Trait Implementations§
source§impl Header for Te
impl Header for Te
impl StructuralPartialEq for Te
Auto Trait Implementations§
impl !Freeze for Te
impl RefUnwindSafe for Te
impl Send for Te
impl Sync for Te
impl Unpin for Te
impl UnwindSafe for Te
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)