Struct zip_structs::zip_local_file_header::ZipDataDescriptor[][src]

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: u32

See 4.4.7 in https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT

Unaffected by file renaming

compressed_size: u32

As the name implies. Note that the file name is not included.

uncompressed_size: u32

As the name implies. Note that the file name is not included.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.