Type Alias rustix::fs::StatFs

source ·
pub type StatFs = statfs64;
Available on crate feature fs only.
Expand description

struct statfs for use with statfs and fstatfs.

Aliased Type§

struct StatFs {
    pub f_type: i64,
    pub f_bsize: i64,
    pub f_blocks: u64,
    pub f_bfree: u64,
    pub f_bavail: u64,
    pub f_files: u64,
    pub f_ffree: u64,
    pub f_fsid: __kernel_fsid_t,
    pub f_namelen: i64,
    pub f_frsize: i64,
    pub f_flags: i64,
    pub f_spare: [i64; 4],
}

Fields§

§f_type: i64§f_bsize: i64§f_blocks: u64§f_bfree: u64§f_bavail: u64§f_files: u64§f_ffree: u64§f_fsid: __kernel_fsid_t§f_namelen: i64§f_frsize: i64§f_flags: i64§f_spare: [i64; 4]

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 120 bytes