pub struct SevenZArchiveEntry {
Show 17 fields pub name: String, pub has_stream: bool, pub is_directory: bool, pub is_anti_item: bool, pub has_creation_date: bool, pub has_last_modified_date: bool, pub has_access_date: bool, pub creation_date: i64, pub last_modified_date: i64, pub access_date: i64, pub has_windows_attributes: bool, pub windows_attributes: u32, pub has_crc: bool, pub crc: u64, pub compressed_crc: u64, pub size: u64, pub compressed_size: u64, /* private fields */
}

Fields

name: Stringhas_stream: boolis_directory: boolis_anti_item: boolhas_creation_date: boolhas_last_modified_date: boolhas_access_date: boolcreation_date: i64last_modified_date: i64access_date: i64has_windows_attributes: boolwindows_attributes: u32has_crc: boolcrc: u64compressed_crc: u64size: u64compressed_size: u64

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
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.