pub struct ZipEntry {
pub name: String,
pub size: u64,
pub compressed_size: u64,
pub is_dir: bool,
pub compression_method: String,
}
Expand description
ZIP file entry information
Fields§
§name: String
§size: u64
§compressed_size: u64
§is_dir: bool
§compression_method: String
Trait 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