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: u32Trait Implementations§
Source§impl Clone for CentralDirectoryHeader
impl Clone for CentralDirectoryHeader
Source§fn clone(&self) -> CentralDirectoryHeader
fn clone(&self) -> CentralDirectoryHeader
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for CentralDirectoryHeader
impl RefUnwindSafe for CentralDirectoryHeader
impl Send for CentralDirectoryHeader
impl Sync for CentralDirectoryHeader
impl Unpin for CentralDirectoryHeader
impl UnwindSafe for CentralDirectoryHeader
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