pub struct ZipEntry {
pub name: String,
pub compressed_size: u64,
pub uncompressed_size: u64,
pub compression_method: u16,
pub offset: u64,
}Expand description
Entry in the ZIP central directory
Fields§
§name: String§compressed_size: u64§uncompressed_size: u64§compression_method: u16§offset: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for ZipEntry
impl RefUnwindSafe for ZipEntry
impl Send for ZipEntry
impl Sync for ZipEntry
impl Unpin for ZipEntry
impl UnwindSafe for ZipEntry
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