pub struct EntryLocation {
pub name: String,
pub local_header_offset: u64,
pub compressed_size: u64,
pub uncompressed_size: u64,
pub compression_method: u16,
pub crc32: u32,
pub is_directory: bool,
}Expand description
Location of one JAR entry, derived from the Central Directory.
Fields§
§name: String§local_header_offset: u64§compressed_size: u64§uncompressed_size: u64§compression_method: u16§crc32: u32§is_directory: boolTrait Implementations§
Source§impl Clone for EntryLocation
impl Clone for EntryLocation
Source§fn clone(&self) -> EntryLocation
fn clone(&self) -> EntryLocation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for EntryLocation
impl RefUnwindSafe for EntryLocation
impl Send for EntryLocation
impl Sync for EntryLocation
impl Unpin for EntryLocation
impl UnsafeUnpin for EntryLocation
impl UnwindSafe for EntryLocation
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