Struct libc::statfs [] [src]

pub struct statfs {
    pub f_bsize: uint32_t,
    pub f_iosize: int32_t,
    pub f_blocks: uint64_t,
    pub f_bfree: uint64_t,
    pub f_bavail: uint64_t,
    pub f_files: uint64_t,
    pub f_ffree: uint64_t,
    pub f_fsid: fsid_t,
    pub f_owner: uid_t,
    pub f_type: uint32_t,
    pub f_flags: uint32_t,
    pub f_fssubtype: uint32_t,
    pub f_fstypename: [c_char; 16],
    pub f_mntonname: [c_char; 1024],
    pub f_mntfromname: [c_char; 1024],
    pub f_reserved: [uint32_t; 8],
}

Fields

f_bsize
f_iosize
f_blocks
f_bfree
f_bavail
f_files
f_ffree
f_fsid
f_owner
f_type
f_flags
f_fssubtype
f_fstypename
f_mntonname
f_mntfromname
f_reserved

Trait Implementations

impl Copy for statfs

impl Clone for statfs

fn clone(&self) -> statfs

fn clone_from(&mut self, source: &Self)