Enum actix_web::http::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]
impl ContentEncoding
pub fn is_compression(self) -> bool
[src]
pub fn is_compression(self) -> bool
Is the content compressed?
pub fn as_str(self) -> &'static str
[src]
pub fn as_str(self) -> &'static str
Convert content encoding to string
pub fn quality(self) -> f64
[src]
pub fn quality(self) -> f64
default quality value
Trait Implementations
impl Copy for ContentEncoding
[src]
impl Copy for ContentEncoding
impl Clone for ContentEncoding
[src]
impl Clone for ContentEncoding
fn clone(&self) -> ContentEncoding
[src]
fn clone(&self) -> ContentEncoding
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl PartialEq for ContentEncoding
[src]
impl PartialEq for ContentEncoding
fn eq(&self, other: &ContentEncoding) -> bool
[src]
fn eq(&self, other: &ContentEncoding) -> bool
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]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]This method tests for !=
.
impl Debug for ContentEncoding
[src]
impl Debug for ContentEncoding
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<'a> From<&'a str> for ContentEncoding
[src]
impl<'a> From<&'a str> for ContentEncoding
fn from(s: &'a str) -> ContentEncoding
[src]
fn from(s: &'a str) -> ContentEncoding
Performs the conversion.
Auto Trait Implementations
impl Send for ContentEncoding
impl Send for ContentEncoding
impl Sync for ContentEncoding
impl Sync for ContentEncoding