Enum http_file_headers::Encoding[][src]

pub enum Encoding {
    Brotli,
    Gzip,
    Identity,
    // some variants omitted
}

Single encoding that might be accepted by user agent

Note: We only support fixed set of encodings, the most useful ones. We have no plans on adding open-ended encodings because it doesn't make much sense, still we may add some encoding in future, based on it's popularity and browser support.

Variants

Brotli encoding (trasferred as "br", and has same extension)

Gzip encoding (trasferred as "gzip", and extension ".gz")

Identity means no encoding

Methods

impl Encoding
[src]

Returns default filename suffix used for this encoding when reading a file from a filesystem.

Trait Implementations

impl Debug for Encoding
[src]

Formats the value using the given formatter. Read more

impl Clone for Encoding
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Encoding
[src]

impl PartialEq for Encoding
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Encoding
[src]

impl Hash for Encoding
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialOrd for Encoding
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for Encoding
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Display for Encoding
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Encoding

impl Sync for Encoding