[−][src]Enum gzip_header::ExtraFlags
Valid values for the extra flag in the gzip specification.
This is a field to be used by the compression methods. For deflate, which is the only specified compression method, this is a value indicating the level of compression of the contained compressed data. This value does not have to correspond to the actual compression level of the contained data, it's only a hint that the the encoder may set.
Variants
Default
MaximumCompression
FastestCompression
Methods
impl ExtraFlags
[src]
pub fn from_u8(value: u8) -> ExtraFlags
[src]
Get the corresponding ExtraFlags
value from a raw byte.
Returns ExtraFlags::Default
(defined as 0 by the gzip specification) for values other than
2 and 4.
pub fn as_u8(&self) -> u8
[src]
Get the raw byte value of this ExtraFlags
variant.
Trait Implementations
impl Eq for ExtraFlags
[src]
impl PartialEq<ExtraFlags> for ExtraFlags
[src]
fn eq(&self, other: &ExtraFlags) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl Clone for ExtraFlags
[src]
fn clone(&self) -> ExtraFlags
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Copy for ExtraFlags
[src]
impl Default for ExtraFlags
[src]
fn default() -> ExtraFlags
[src]
impl Debug for ExtraFlags
[src]
impl Display for ExtraFlags
[src]
impl Hash for ExtraFlags
[src]
Auto Trait Implementations
impl Send for ExtraFlags
impl Sync for ExtraFlags
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,