[][src]Struct rc_zip::ExtraUnixField

pub struct ExtraUnixField {
    pub atime: u32,
    pub mtime: u32,
    pub uid: u16,
    pub gid: u16,
    pub data: ZipBytes,
}

4.5.7 -UNIX Extra Field (0x000d):

Fields

atime: u32

file last access time

mtime: u32

file last modification time

uid: u16

file user id

gid: u16

file group id

data: ZipBytes

variable length data field

Trait Implementations

impl Debug for ExtraUnixField[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.