[][src]Struct libzip_sys::zip_stat

#[repr(C)]
pub struct zip_stat {
    pub valid: zip_uint64_t,
    pub name: *const c_char,
    pub index: zip_uint64_t,
    pub size: zip_uint64_t,
    pub comp_size: zip_uint64_t,
    pub mtime: time_t,
    pub crc: zip_uint32_t,
    pub comp_method: zip_uint16_t,
    pub encryption_method: zip_uint16_t,
    pub flags: zip_uint32_t,
}

Fields

valid: zip_uint64_tname: *const c_charindex: zip_uint64_tsize: zip_uint64_tcomp_size: zip_uint64_tmtime: time_tcrc: zip_uint32_tcomp_method: zip_uint16_tencryption_method: zip_uint16_tflags: zip_uint32_t

Trait Implementations

impl Clone for zip_stat[src]

impl Copy for zip_stat[src]

impl Debug for zip_stat[src]

Auto Trait Implementations

impl RefUnwindSafe for zip_stat

impl !Send for zip_stat

impl !Sync for zip_stat

impl Unpin for zip_stat

impl UnwindSafe for zip_stat

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 = !

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.