[][src]Enum rc_zip::ExtraField

pub enum ExtraField {
    Zip64(ExtraZip64Field),
    Timestamp(ExtraTimestampField),
    Unix(ExtraUnixField),
    NewUnix(ExtraNewUnixField),
    Ntfs(ExtraNtfsField),
    Unknown {
        tag: u16,
    },
}

Information stored in the central directory header extra field

This typically contains timestamps, file sizes and offsets, file mode, uid/gid, etc.

See extrafld.txt in this crate's source distribution.

Variants

Zip64 extended information extra field

Extended timestamp

UNIX & Info-Zip UNIX

New UNIX extra field

NTFS (Win9x/WinNT FileTimes)

Unknown

Unknown extra field, with tag

Fields of Unknown

tag: u16

Trait Implementations

impl Debug for ExtraField[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, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

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.