pub struct Zip64EndOfCentralDirectoryLocator {
pub zip64_end_of_central_dir_locator_signature: u32,
pub number_of_the_disk_with_the_start_of_the_central_directory: u32,
pub relative_offset_of_the_zip64_end_of_central_directory_record: u64,
pub number_of_this_disk: u32,
}
Expand description
Zip64 end of central directory locator
see 4.3.14
Fields§
§zip64_end_of_central_dir_locator_signature: u32
§number_of_the_disk_with_the_start_of_the_central_directory: u32
§relative_offset_of_the_zip64_end_of_central_directory_record: u64
§number_of_this_disk: u32
Implementations§
Source§impl Zip64EndOfCentralDirectoryLocator
impl Zip64EndOfCentralDirectoryLocator
pub const SIZE_IN_BYTES: usize = 20usize
pub const ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIGNATURE: u32 = 117_853_008u32
Trait Implementations§
Source§impl Clone for Zip64EndOfCentralDirectoryLocator
impl Clone for Zip64EndOfCentralDirectoryLocator
Source§fn clone(&self) -> Zip64EndOfCentralDirectoryLocator
fn clone(&self) -> Zip64EndOfCentralDirectoryLocator
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 Zip64EndOfCentralDirectoryLocator
impl Parse for Zip64EndOfCentralDirectoryLocator
Source§impl PartialEq for Zip64EndOfCentralDirectoryLocator
impl PartialEq for Zip64EndOfCentralDirectoryLocator
Source§fn eq(&self, other: &Zip64EndOfCentralDirectoryLocator) -> bool
fn eq(&self, other: &Zip64EndOfCentralDirectoryLocator) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Signature for Zip64EndOfCentralDirectoryLocator
impl Signature for Zip64EndOfCentralDirectoryLocator
fn is_valid_signature(&self) -> bool
impl StructuralPartialEq for Zip64EndOfCentralDirectoryLocator
Auto Trait Implementations§
impl Freeze for Zip64EndOfCentralDirectoryLocator
impl RefUnwindSafe for Zip64EndOfCentralDirectoryLocator
impl Send for Zip64EndOfCentralDirectoryLocator
impl Sync for Zip64EndOfCentralDirectoryLocator
impl Unpin for Zip64EndOfCentralDirectoryLocator
impl UnwindSafe for Zip64EndOfCentralDirectoryLocator
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