pub struct DataDescriptorZip64 {
pub crc_32: u32,
pub compressed_size: u64,
pub uncompressed_size: u64,
}
Expand description
Data descriptor for Zip64, sizes are 8 bytes instead of 4, see
DataDescriptor
Fields§
§crc_32: u32
§compressed_size: u64
§uncompressed_size: u64
Implementations§
Source§impl DataDescriptorZip64
impl DataDescriptorZip64
pub const SIZE_IN_BYTES: usize = 20usize
Trait Implementations§
Source§impl Clone for DataDescriptorZip64
impl Clone for DataDescriptorZip64
Source§fn clone(&self) -> DataDescriptorZip64
fn clone(&self) -> DataDescriptorZip64
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 DataDescriptorZip64
impl Debug for DataDescriptorZip64
Source§impl Parse for DataDescriptorZip64
impl Parse for DataDescriptorZip64
Source§impl PartialEq for DataDescriptorZip64
impl PartialEq for DataDescriptorZip64
impl StructuralPartialEq for DataDescriptorZip64
Auto Trait Implementations§
impl Freeze for DataDescriptorZip64
impl RefUnwindSafe for DataDescriptorZip64
impl Send for DataDescriptorZip64
impl Sync for DataDescriptorZip64
impl Unpin for DataDescriptorZip64
impl UnwindSafe for DataDescriptorZip64
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