Enum actix_web::http::header::ContentEncoding
[−]
[src]
pub enum ContentEncoding { Auto, Br, Deflate, Gzip, Identity, }
Represents supported types of content encodings
Variants
Auto
Automatically select encoding based on encoding negotiation
Br
A format using the Brotli algorithm
Deflate
A format using the zlib structure with deflate algorithm
Gzip
Gzip algorithm
Identity
Indicates the identity function (i.e. no compression, nor modification)
Methods
impl ContentEncoding
[src]
pub fn is_compression(&self) -> bool
[src]
pub fn as_str(&self) -> &'static str
[src]
pub fn quality(&self) -> f64
[src]
default quality value
Trait Implementations
impl Copy for ContentEncoding
[src]
impl Clone for ContentEncoding
[src]
fn clone(&self) -> ContentEncoding
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq for ContentEncoding
[src]
fn eq(&self, __arg_0: &ContentEncoding) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl Debug for ContentEncoding
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<'a> From<&'a str> for ContentEncoding
[src]
fn from(s: &'a str) -> ContentEncoding
[src]
Performs the conversion.