#[repr(C)]pub struct stat {Show 18 fields
pub st_dev: dev_t,
pub st_ino: ino_t,
pub st_nlink: c_ulong,
pub st_mode: c_uint,
pub st_uid: uid_t,
pub st_gid: gid_t,
pub __pad0: c_uint,
pub st_rdev: dev_t,
pub st_size: off_t,
pub st_blksize: c_long,
pub st_blocks: c_long,
pub st_atime: time_t,
pub st_atime_nsec: c_long,
pub st_mtime: time_t,
pub st_mtime_nsec: c_long,
pub st_ctime: time_t,
pub st_ctime_nsec: c_long,
pub __pad3: [c_long; 3],
}these type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
Fields§
§st_dev: dev_tthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
st_ino: ino_tthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
st_nlink: c_ulongthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
st_mode: c_uintthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
st_uid: uid_tthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
st_gid: gid_tthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
__pad0: c_uintthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
st_rdev: dev_tthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
st_size: off_tthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
st_blksize: c_longthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
st_blocks: c_longthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
st_atime: time_tthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
st_atime_nsec: c_longthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
st_mtime: time_tthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
st_mtime_nsec: c_longthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
st_ctime: time_tthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
st_ctime_nsec: c_longthese type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions
__pad3: [c_long; 3]these type aliases are no longer supported by the standard library, the libc crate on crates.io should be used instead for the correct definitions