Struct http_types::transfer::TransferEncoding [−][src]
The form of encoding used to safely transfer the payload body to the user.
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
impl TransferEncoding
[src]
pub fn new(encoding: Encoding) -> Self
[src]
Create a new instance of CacheControl
.
pub fn from_headers(headers: impl AsRef<Headers>) -> Result<Option<Self>>
[src]
Create a new instance from headers.
pub fn apply(&self, headers: impl AsMut<Headers>)
[src]
Sets the Content-Encoding
header.
pub fn name(&self) -> HeaderName
[src]
Get the HeaderName
.
pub fn value(&self) -> HeaderValue
[src]
Get the HeaderValue
.
pub fn encoding(&self) -> Encoding
[src]
Access the encoding kind.
Trait Implementations
impl Debug for TransferEncoding
[src]
impl Deref for TransferEncoding
[src]
impl DerefMut for TransferEncoding
[src]
impl From<&'_ Encoding> for TransferEncoding
[src]
impl From<&'_ EncodingProposal> for TransferEncoding
[src]
fn from(encoding: &EncodingProposal) -> Self
[src]
impl From<Encoding> for TransferEncoding
[src]
impl From<EncodingProposal> for TransferEncoding
[src]
fn from(encoding: EncodingProposal) -> Self
[src]
impl PartialEq<&'_ Encoding> for TransferEncoding
[src]
fn eq(&self, other: &&Encoding) -> bool
[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<Encoding> for TransferEncoding
[src]
fn eq(&self, other: &Encoding) -> bool
[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl ToHeaderValues for TransferEncoding
[src]
type Iter = IntoIter<HeaderValue>
Returned iterator over header values which this type may correspond to.
fn to_header_values(&self) -> Result<Self::Iter>
[src]
Auto Trait Implementations
impl RefUnwindSafe for TransferEncoding
impl Send for TransferEncoding
impl Sync for TransferEncoding
impl Unpin for TransferEncoding
impl UnwindSafe for TransferEncoding
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,