Enum gzip_header::ExtraFlags [] [src]

#[repr(u8)]
pub enum ExtraFlags { Default, MaximumCompression, FastestCompression, }

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.

Variants

Methods

impl ExtraFlags
[src]

Get the raw byte value of this ExtraFlags variant.

Trait Implementations

impl Debug for ExtraFlags
[src]

Formats the value using the given formatter.

impl Copy for ExtraFlags
[src]

impl Clone for ExtraFlags
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ExtraFlags
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ExtraFlags
[src]