[][src]Struct unshield::FileInfo

pub struct FileInfo {
    pub name: String,
    pub path: String,
    pub size: usize,
    pub offset: u64,
}

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 Clone for FileInfo[src]

impl Debug for FileInfo[src]

impl Eq for FileInfo[src]

impl Hash for FileInfo[src]

impl PartialEq<FileInfo> for FileInfo[src]

impl StructuralEq for FileInfo[src]

impl StructuralPartialEq for FileInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.