pub struct ZipEntry {
pub name: String,
pub data: Vec<u8>,
}Expand description
One member of a ZIP archive.
name is the path within the archive; data is the member’s uncompressed
contents.
Fields§
§name: String§data: Vec<u8>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