http_types::transfer

Struct TransferEncoding

source
pub struct TransferEncoding { /* private fields */ }
Expand description

The form of encoding used to safely transfer the payload body to the user.

MDN Documentation

§Specifications

§Examples

use http_types::Response;
use http_types::transfer::{TransferEncoding, Encoding};
let mut encoding = TransferEncoding::new(Encoding::Chunked);

let mut res = Response::new(200);
encoding.apply(&mut res);

let encoding = TransferEncoding::from_headers(res)?.unwrap();
assert_eq!(encoding, &Encoding::Chunked);

Implementations§

source§

impl TransferEncoding

source

pub fn new(encoding: Encoding) -> Self

Create a new instance of CacheControl.

source

pub fn from_headers(headers: impl AsRef<Headers>) -> Result<Option<Self>>

Create a new instance from headers.

source

pub fn apply(&self, headers: impl AsMut<Headers>)

Sets the Content-Encoding header.

source

pub fn name(&self) -> HeaderName

Get the HeaderName.

source

pub fn value(&self) -> HeaderValue

Get the HeaderValue.

source

pub fn encoding(&self) -> Encoding

Access the encoding kind.

Trait Implementations§

source§

impl Debug for TransferEncoding

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Deref for TransferEncoding

source§

type Target = Encoding

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl DerefMut for TransferEncoding

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
source§

impl From<&Encoding> for TransferEncoding

source§

fn from(encoding: &Encoding) -> Self

Converts to this type from the input type.
source§

impl From<&EncodingProposal> for TransferEncoding

source§

fn from(encoding: &EncodingProposal) -> Self

Converts to this type from the input type.
source§

impl From<Encoding> for TransferEncoding

source§

fn from(encoding: Encoding) -> Self

Converts to this type from the input type.
source§

impl From<EncodingProposal> for TransferEncoding

source§

fn from(encoding: EncodingProposal) -> Self

Converts to this type from the input type.
source§

impl PartialEq<&Encoding> for TransferEncoding

source§

fn eq(&self, other: &&Encoding) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Encoding> for TransferEncoding

source§

fn eq(&self, other: &Encoding) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl ToHeaderValues for TransferEncoding

source§

type Iter = IntoIter<HeaderValue>

Returned iterator over header values which this type may correspond to.
source§

fn to_header_values(&self) -> Result<Self::Iter>

Converts this object to an iterator of resolved HeaderValues.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> MaybeSendSync for T