pub enum ContentCoding {
Gzip,
Deflate,
Brotli,
Any,
}
Available on crate feature
compression
only.Expand description
Variants§
Trait Implementations§
Source§impl Debug for ContentCoding
impl Debug for ContentCoding
Source§impl From<ContentCoding> for &'static str
impl From<ContentCoding> for &'static str
Source§fn from(cc: ContentCoding) -> Self
fn from(cc: ContentCoding) -> Self
Converts to this type from the input type.
Source§impl FromStr for ContentCoding
impl FromStr for ContentCoding
Source§impl PartialEq for ContentCoding
impl PartialEq for ContentCoding
impl Eq for ContentCoding
impl StructuralPartialEq for ContentCoding
Auto Trait Implementations§
impl Freeze for ContentCoding
impl RefUnwindSafe for ContentCoding
impl Send for ContentCoding
impl Sync for ContentCoding
impl Unpin for ContentCoding
impl UnwindSafe for ContentCoding
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