pub struct ZipDataDescriptor {
pub crc32: u32,
pub compressed_size: u32,
pub uncompressed_size: u32,
}Expand description
Class for Data Descriptor
Used when bit #3 of general purpose bit of lcoal header or central directory is set
Fields§
§crc32: u32See 4.4.7 in https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT
Unaffected by file renaming
compressed_size: u32As the name implies. Note that the file name is not included.
uncompressed_size: u32As the name implies. Note that the file name is not included.
Auto Trait Implementations§
impl Freeze for ZipDataDescriptor
impl RefUnwindSafe for ZipDataDescriptor
impl Send for ZipDataDescriptor
impl Sync for ZipDataDescriptor
impl Unpin for ZipDataDescriptor
impl UnwindSafe for ZipDataDescriptor
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