pub struct FileInfo {
pub name: String,
pub path: String,
pub size: usize,
pub offset: u64,
}
Expand description
Information about a file in an InstallShield Z archive.
You can get an iterator over these entries by using
Archive::list
.
Fields§
§name: String
The name of the file (without directories).
path: String
The full path of the file, using \
to seperate directories.
size: usize
The compressed size of the file in the archive.
offset: u64
The offset within the archive where the file starts.
Trait Implementations§
impl Eq for FileInfo
impl StructuralPartialEq for FileInfo
Auto Trait Implementations§
impl Freeze for FileInfo
impl RefUnwindSafe for FileInfo
impl Send for FileInfo
impl Sync for FileInfo
impl Unpin for FileInfo
impl UnwindSafe for FileInfo
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