Struct libflate::gzip::ExtraField
[−]
[src]
pub struct ExtraField {
pub id: [u8; 2],
pub data: Vec<u8>,
}Extra field of a GZIP header.
Fields
id: [u8; 2]
ID of the extra field.
data: Vec<u8>
Data of the extra field.
Trait Implementations
impl Debug for ExtraField[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Clone for ExtraField[src]
fn clone(&self) -> ExtraField[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for ExtraField[src]
fn eq(&self, __arg_0: &ExtraField) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &ExtraField) -> bool[src]
This method tests for !=.