Struct hermit_abi::stat
source · #[repr(C)]pub struct stat {Show 16 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 st_rdev: u64,
pub st_size: u64,
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,
}Fields§
§st_dev: u64§st_ino: u64§st_nlink: u64§st_mode: u32access permissions
st_uid: u32user id
st_gid: u32group id
st_rdev: u64device id
st_size: u64size in bytes
st_blksize: i64block size
st_blocks: i64size in blocks
st_atime: u64time of last access
st_atime_nsec: u64§st_mtime: u64time of last modification
st_mtime_nsec: u64§st_ctime: u64time of last status change
st_ctime_nsec: u64Trait Implementations§
impl Copy for stat
Auto Trait Implementations§
impl RefUnwindSafe for stat
impl Send for stat
impl Sync for stat
impl Unpin for stat
impl UnwindSafe for stat
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more