pub enum Encoding {
Gzip,
Deflate,
Brotli,
Zstd,
Identity,
}
Expand description
Encodings to use.
Variants§
Gzip
The Gzip encoding.
Deflate
The Deflate encoding.
Brotli
The Brotli encoding.
Zstd
The Zstd encoding.
Identity
No encoding.
Implementations§
Source§impl Encoding
impl Encoding
Sourcepub fn to_header_value(self) -> HeaderValue
pub fn to_header_value(self) -> HeaderValue
Converts the encoding into its’ corresponding header value.
Trait Implementations§
impl Copy for Encoding
impl Eq for Encoding
impl StructuralPartialEq for Encoding
Auto Trait Implementations§
impl Freeze for Encoding
impl RefUnwindSafe for Encoding
impl Send for Encoding
impl Sync for Encoding
impl Unpin for Encoding
impl UnwindSafe for Encoding
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more