pub struct Zip64EndOfCentralDirectoryFixed {
pub zip64_end_of_central_dir_signature: u32,
pub size_of_zip64_end_of_central_directory_record: u64,
pub version_made_by: u16,
pub version_needed_to_extract: u16,
pub number_of_this_disk: u32,
pub number_of_the_disk_with_the_start_of_the_central_directory: u32,
pub total_number_of_entries_in_the_central_directory_on_this_disk: u64,
pub total_number_of_entries_in_the_central_directory: u64,
pub size_of_the_central_directory: u64,
pub offset_of_start_of_central_directory_with_respect_to_the_starting_disk_number: u64,
}
Expand description
Zip64 end of central directory record
see 4.3.14
Fields§
§zip64_end_of_central_dir_signature: u32
§size_of_zip64_end_of_central_directory_record: u64
§version_made_by: u16
§version_needed_to_extract: u16
§number_of_this_disk: u32
§number_of_the_disk_with_the_start_of_the_central_directory: u32
§total_number_of_entries_in_the_central_directory_on_this_disk: u64
§total_number_of_entries_in_the_central_directory: u64
§size_of_the_central_directory: u64
§offset_of_start_of_central_directory_with_respect_to_the_starting_disk_number: u64
Implementations§
Source§impl Zip64EndOfCentralDirectoryFixed
impl Zip64EndOfCentralDirectoryFixed
pub const SIZE_IN_BYTES: usize = 56usize
pub const ZIP64_END_OF_CENTRAL_DIR_SIGNATURE: u32 = 101_075_792u32
Trait Implementations§
Source§impl Clone for Zip64EndOfCentralDirectoryFixed
impl Clone for Zip64EndOfCentralDirectoryFixed
Source§fn clone(&self) -> Zip64EndOfCentralDirectoryFixed
fn clone(&self) -> Zip64EndOfCentralDirectoryFixed
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 moreSource§impl Parse for Zip64EndOfCentralDirectoryFixed
impl Parse for Zip64EndOfCentralDirectoryFixed
Source§impl PartialEq for Zip64EndOfCentralDirectoryFixed
impl PartialEq for Zip64EndOfCentralDirectoryFixed
Source§fn eq(&self, other: &Zip64EndOfCentralDirectoryFixed) -> bool
fn eq(&self, other: &Zip64EndOfCentralDirectoryFixed) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Signature for Zip64EndOfCentralDirectoryFixed
impl Signature for Zip64EndOfCentralDirectoryFixed
fn is_valid_signature(&self) -> bool
impl StructuralPartialEq for Zip64EndOfCentralDirectoryFixed
Auto Trait Implementations§
impl Freeze for Zip64EndOfCentralDirectoryFixed
impl RefUnwindSafe for Zip64EndOfCentralDirectoryFixed
impl Send for Zip64EndOfCentralDirectoryFixed
impl Sync for Zip64EndOfCentralDirectoryFixed
impl Unpin for Zip64EndOfCentralDirectoryFixed
impl UnwindSafe for Zip64EndOfCentralDirectoryFixed
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