[][src]Struct typed_headers::ContentCoding

pub struct ContentCoding(_);

A content coding, used in the Accept-Encoding and Content-Encoding headers.

Methods

impl ContentCoding[src]

pub const BROTLI: ContentCoding[src]

The Brotli coding, as specified in RFC7932.

pub const GZIP: ContentCoding[src]

The Gzip coding, as specified in RFC7230.

pub const DEFLATE: ContentCoding[src]

The Deflate coding, as specified in RFC7230.

pub const COMPRESS: ContentCoding[src]

The Compress coding, as specified in RFC7230.

pub const IDENTITY: ContentCoding[src]

The identity coding.

pub const STAR: ContentCoding[src]

A wildcard, used in the Accept-Encoding header to indicate that all codings are acceptable.

pub fn new(s: &str) -> Result<ContentCoding, Error>[src]

Constructs a new instance of this value from a string.

An error is returned if the string is not a valid token.

pub fn as_str(&self) -> &str[src]

Returns the string representation of this token.

Trait Implementations

impl From<ContentCoding> for ContentEncoding[src]

impl Clone for ContentCoding[src]

impl Eq for ContentCoding[src]

impl PartialEq<ContentCoding> for ContentCoding[src]

impl Debug for ContentCoding[src]

impl Display for ContentCoding[src]

impl FromStr for ContentCoding[src]

type Err = Error

The associated error which can be returned from parsing.

impl StructuralPartialEq for ContentCoding[src]

impl StructuralEq for ContentCoding[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]