pub struct ZipEntry {
pub name: String,
pub size: u64,
pub compressed_size: u64,
pub is_directory: bool,
pub last_modified: Option<SystemTime>,
}Expand description
ZIP文档条目信息
Fields§
§name: String§size: u64§compressed_size: u64§is_directory: bool§last_modified: Option<SystemTime>Implementations§
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 UnsafeUnpin 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