#[repr(C)]pub struct stat {
pub st_dev: dev_t,
pub st_ino: ino_t,
pub st_mode: u16,
pub st_nlink: c_short,
pub st_uid: c_short,
pub st_gid: c_short,
pub st_rdev: dev_t,
pub st_size: i64,
pub st_atime: time64_t,
pub st_mtime: time64_t,
pub st_ctime: time64_t,
}
Fields§
§st_dev: dev_t
§st_ino: ino_t
§st_mode: u16
§st_nlink: c_short
§st_uid: c_short
§st_gid: c_short
§st_rdev: dev_t
§st_size: i64
§st_atime: time64_t
§st_mtime: time64_t
§st_ctime: time64_t
Trait Implementations§
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