#[repr(u8)]pub enum Cenc {
Null = 0,
Zlib = 1,
Deflate = 2,
Gzip = 3,
}Expand description
Content Encoding, compressed
Variants§
Null = 0
Do not encode content before transmission
Zlib = 1
Encode content with ZLIB
Deflate = 2
Encode content with Deflate
Gzip = 3
Encode content with Gzip
Implementations§
Trait Implementations§
impl Copy for Cenc
impl StructuralPartialEq for Cenc
Auto Trait Implementations§
impl Freeze for Cenc
impl RefUnwindSafe for Cenc
impl Send for Cenc
impl Sync for Cenc
impl Unpin for Cenc
impl UnsafeUnpin for Cenc
impl UnwindSafe for Cenc
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