Type Alias stat

Source
pub type stat = linux_stat;

Aliased Type§

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 l__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 l__unused: [i64; 3],
}

Fields§

§st_dev: u64§st_ino: u64§st_nlink: u64§st_mode: u32§st_uid: u32§st_gid: u32§l__pad0: u32§st_rdev: u64§st_size: i64§st_blksize: i64§st_blocks: i64§st_atime: u64§st_atime_nsec: u64§st_mtime: u64§st_mtime_nsec: u64§st_ctime: u64§st_ctime_nsec: u64§l__unused: [i64; 3]

Trait Implementations§

Source§

impl Pod for stat

Source§

impl Clone for linux_stat

Source§

fn clone(&self) -> linux_stat

Returns a copy of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for linux_stat

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for linux_stat

Source§

fn eq(&self, other: &linux_stat) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for linux_stat

Source§

impl Eq for linux_stat

Source§

impl StructuralPartialEq for linux_stat