Type Alias rustix::fs::Stat
source · pub type Stat = stat;
Expand description
struct Stat {Show 18 fields
pub st_dev: u64,
pub st_ino: u64,
pub st_nlink: u64,
pub st_mode: u32,
pub st_uid: u32,
pub st_gid: u32,
pub __pad0: u32,
pub st_rdev: u64,
pub st_size: i64,
pub st_blksize: i64,
pub st_blocks: i64,
pub st_atime: u64,
pub st_atime_nsec: u64,
pub st_mtime: u64,
pub st_mtime_nsec: u64,
pub st_ctime: u64,
pub st_ctime_nsec: u64,
pub __unused: [i64; 3],
}
Return the value of the st_atime
field, casted to the correct type.
Return the value of the st_mtime
field, casted to the correct type.
Return the value of the st_ctime
field, casted to the correct type.