Struct stream_unzip::CentralDirectoryHeader
source · pub struct CentralDirectoryHeader {Show 16 fields
pub version_made_by: u16,
pub version_needed_to_extract: u16,
pub flags: u16,
pub compression: u16,
pub last_mod_time: u16,
pub last_mod_date: u16,
pub crc32: u32,
pub compressed_size: u32,
pub uncompressed_size: u32,
pub file_name_length: u16,
pub extra_field_length: u16,
pub file_comment_length: u16,
pub disk_number_start: u16,
pub internal_file_attributes: u16,
pub external_file_attributes: u32,
pub relative_offset_of_local_header: u32,
}
Fields§
§version_made_by: u16
§version_needed_to_extract: u16
§flags: u16
§compression: u16
§last_mod_time: u16
§last_mod_date: u16
§crc32: u32
§compressed_size: u32
§uncompressed_size: u32
§file_name_length: u16
§extra_field_length: u16
§file_comment_length: u16
§disk_number_start: u16
§internal_file_attributes: u16
§external_file_attributes: u32
§relative_offset_of_local_header: u32
Trait Implementations§
source§impl Clone for CentralDirectoryHeader
impl Clone for CentralDirectoryHeader
source§fn clone(&self) -> CentralDirectoryHeader
fn clone(&self) -> CentralDirectoryHeader
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more