pub struct DataDescriptorZip64Signature {
pub signature: u32,
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 and with a
signature, see DataDescriptor
Fields§
§signature: u32
§crc_32: u32
§compressed_size: u64
§uncompressed_size: u64
Implementations§
Source§impl DataDescriptorZip64Signature
impl DataDescriptorZip64Signature
pub const SIZE_IN_BYTES: usize = 24usize
Trait Implementations§
Source§impl Clone for DataDescriptorZip64Signature
impl Clone for DataDescriptorZip64Signature
Source§fn clone(&self) -> DataDescriptorZip64Signature
fn clone(&self) -> DataDescriptorZip64Signature
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 DataDescriptorZip64Signature
impl Debug for DataDescriptorZip64Signature
Source§impl Parse for DataDescriptorZip64Signature
impl Parse for DataDescriptorZip64Signature
Source§impl PartialEq for DataDescriptorZip64Signature
impl PartialEq for DataDescriptorZip64Signature
Source§fn eq(&self, other: &DataDescriptorZip64Signature) -> bool
fn eq(&self, other: &DataDescriptorZip64Signature) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Signature for DataDescriptorZip64Signature
impl Signature for DataDescriptorZip64Signature
fn is_valid_signature(&self) -> bool
impl StructuralPartialEq for DataDescriptorZip64Signature
Auto Trait Implementations§
impl Freeze for DataDescriptorZip64Signature
impl RefUnwindSafe for DataDescriptorZip64Signature
impl Send for DataDescriptorZip64Signature
impl Sync for DataDescriptorZip64Signature
impl Unpin for DataDescriptorZip64Signature
impl UnwindSafe for DataDescriptorZip64Signature
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