pub struct Zip64EndOfCentralDirectory {
pub fixed: Zip64EndOfCentralDirectoryFixed,
pub zip64_extensible_data_sector: Vec<u8>,
}
Expand description
part of Zip64EndOfCentralDirectory
which has a fixed size
Fields§
§fixed: Zip64EndOfCentralDirectoryFixed
§zip64_extensible_data_sector: Vec<u8>
Trait Implementations§
Source§impl Clone for Zip64EndOfCentralDirectory
impl Clone for Zip64EndOfCentralDirectory
Source§fn clone(&self) -> Zip64EndOfCentralDirectory
fn clone(&self) -> Zip64EndOfCentralDirectory
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 Debug for Zip64EndOfCentralDirectory
impl Debug for Zip64EndOfCentralDirectory
Source§impl Parse for Zip64EndOfCentralDirectory
impl Parse for Zip64EndOfCentralDirectory
Source§impl ParseExtend for Zip64EndOfCentralDirectory
This parsing just asummes that size_of_zip64_end_of_central_directory_record
is exactly what it SHOULD be according to APPNOTE.txt
impl ParseExtend for Zip64EndOfCentralDirectory
This parsing just asummes that size_of_zip64_end_of_central_directory_record is exactly what it SHOULD be according to APPNOTE.txt
Source§impl PartialRecord for Zip64EndOfCentralDirectory
impl PartialRecord for Zip64EndOfCentralDirectory
type Partial = Zip64EndOfCentralDirectoryFixed
fn get_partial(&self) -> &Self::Partial
Source§fn is_valid_sizes(&self) -> bool
fn is_valid_sizes(&self) -> bool
all dynamic records contain dynamic data and length information in the
fixed part. Verify if those 2 values are matching
impl StructuralPartialEq for Zip64EndOfCentralDirectory
Auto Trait Implementations§
impl Freeze for Zip64EndOfCentralDirectory
impl RefUnwindSafe for Zip64EndOfCentralDirectory
impl Send for Zip64EndOfCentralDirectory
impl Sync for Zip64EndOfCentralDirectory
impl Unpin for Zip64EndOfCentralDirectory
impl UnwindSafe for Zip64EndOfCentralDirectory
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