[][src]Struct rc_zip::ExtraNewUnixField

pub struct ExtraNewUnixField {
    pub uid: u64,
    pub gid: u64,
}

Info-ZIP New Unix Extra Field:

Currently stores Unix UIDs/GIDs up to 32 bits. (Last Revision 20080509)

Value         Size        Description
-----         ----        -----------
0x7875        Short       tag for this extra block type ("ux")
TSize         Short       total data size for this block
Version       1 byte      version of this extra field, currently 1
UIDSize       1 byte      Size of UID field
UID           Variable    UID for this entry
GIDSize       1 byte      Size of GID field
GID           Variable    GID for this entry

Fields

uid: u64gid: u64

Trait Implementations

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