Enum uhttp_transfer_encoding::StdTransferEncoding [] [src]

pub enum StdTransferEncoding {
    Chunked,
    Compress,
    Deflate,
    Gzip,
}

Standard transfer encoding scheme, as defined by IANA.

Variants

Split into a series of chunks.

UNIX "compress" data format.

Deflate compressed data format.

Gzip compressed data format.

Trait Implementations

impl Copy for StdTransferEncoding
[src]

impl Clone for StdTransferEncoding
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for StdTransferEncoding
[src]

impl PartialEq for StdTransferEncoding
[src]

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

This method tests for !=.

impl Debug for StdTransferEncoding
[src]

Formats the value using the given formatter.

impl Hash for StdTransferEncoding
[src]

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

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

impl FromStr for StdTransferEncoding
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more