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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more