[][src]Enum yukikaze::header::ContentEncoding

pub enum ContentEncoding {
    Identity,
    Gzip,
    Deflate,
    Brotli,
}

Content-Encoding header

Variants

Identity

Indicates that no compression is taken place.

Gzip

Indicates compression using Gzip.

Deflate

Indicates compression using Deflate.

Brotli

Indicates compression using Brotli.

Methods

impl ContentEncoding[src]

pub fn is_compression(&self) -> bool[src]

Returns whether encoding indicates compression or not

pub fn can_decompress(&self) -> bool[src]

Returns whether Yukikaze-sama can decompress.

Based on enabled features.

Note that if decompression is not possible, user must decompress himself.

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

Returns textual representation.

Trait Implementations

impl<'a> From<&'a str> for ContentEncoding[src]

impl Debug for ContentEncoding[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Erased for T