[][src]Struct libc::statfs

#[repr(C)]pub struct statfs {
    pub f_version: u32,
    pub f_type: u32,
    pub f_flags: u64,
    pub f_bsize: u64,
    pub f_iosize: u64,
    pub f_blocks: u64,
    pub f_bfree: u64,
    pub f_bavail: i64,
    pub f_files: u64,
    pub f_ffree: i64,
    pub f_syncwrites: u64,
    pub f_asyncwrites: u64,
    pub f_syncreads: u64,
    pub f_asyncreads: u64,
    pub f_namemax: u32,
    pub f_owner: uid_t,
    pub f_fsid: fsid_t,
    pub f_fstypename: [c_char; 16],
    pub f_mntfromname: [c_char; 88],
    pub f_mntonname: [c_char; 88],
    // some fields omitted
}

Fields

f_version: u32f_type: u32f_flags: u64f_bsize: u64f_iosize: u64f_blocks: u64f_bfree: u64f_bavail: i64f_files: u64f_ffree: i64f_syncwrites: u64f_asyncwrites: u64f_syncreads: u64f_asyncreads: u64f_namemax: u32f_owner: uid_tf_fsid: fsid_tf_fstypename: [c_char; 16]f_mntfromname: [c_char; 88]f_mntonname: [c_char; 88]

Trait Implementations

impl Clone for statfs[src]

impl Copy for statfs[src]

Auto Trait Implementations

impl Send for statfs

impl Sync for statfs

impl Unpin for statfs

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