Enum actix_web::http::ContentEncoding [−][src]
pub enum ContentEncoding {
Auto,
Br,
Deflate,
Gzip,
Identity,
}Represents supported types of content encodings
Variants
AutoAutomatically select encoding based on encoding negotiation
BrA format using the Brotli algorithm
DeflateA format using the zlib structure with deflate algorithm
GzipGzip algorithm
IdentityIndicates the identity function (i.e. no compression, nor modification)
Methods
impl ContentEncoding[src]
impl ContentEncodingpub fn is_compression(self) -> bool[src]
pub fn is_compression(self) -> boolIs the content compressed?
pub fn as_str(self) -> &'static str[src]
pub fn as_str(self) -> &'static strConvert content encoding to string
pub fn quality(self) -> f64[src]
pub fn quality(self) -> f64default quality value
Trait Implementations
impl Copy for ContentEncoding[src]
impl Copy for ContentEncodingimpl Clone for ContentEncoding[src]
impl Clone for ContentEncodingfn clone(&self) -> ContentEncoding[src]
fn clone(&self) -> ContentEncodingReturns 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 ContentEncodingfn eq(&self, other: &ContentEncoding) -> bool[src]
fn eq(&self, other: &ContentEncoding) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> bool1.0.0
[src]This method tests for !=.
impl Debug for ContentEncoding[src]
impl Debug for ContentEncodingfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<'a> From<&'a str> for ContentEncoding[src]
impl<'a> From<&'a str> for ContentEncodingfn from(s: &'a str) -> ContentEncoding[src]
fn from(s: &'a str) -> ContentEncodingPerforms the conversion.
Auto Trait Implementations
impl Send for ContentEncoding
impl Send for ContentEncodingimpl Sync for ContentEncoding
impl Sync for ContentEncoding