#[repr(C)]pub struct stat {Show 15 fields
pub st_dev: __dev_t,
pub st_ino: __ino_t,
pub st_nlink: __nlink_t,
pub st_mode: __mode_t,
pub st_uid: __uid_t,
pub st_gid: __gid_t,
pub __pad0: c_int,
pub st_rdev: __dev_t,
pub st_size: __off_t,
pub st_blksize: __blksize_t,
pub st_blocks: __blkcnt_t,
pub st_atim: timespec,
pub st_mtim: timespec,
pub st_ctim: timespec,
pub __glibc_reserved: [__syscall_slong_t; 3],
}
Fields§
§st_dev: __dev_t
§st_ino: __ino_t
§st_nlink: __nlink_t
§st_mode: __mode_t
§st_uid: __uid_t
§st_gid: __gid_t
§__pad0: c_int
§st_rdev: __dev_t
§st_size: __off_t
§st_blksize: __blksize_t
§st_blocks: __blkcnt_t
§st_atim: timespec
§st_mtim: timespec
§st_ctim: timespec
§__glibc_reserved: [__syscall_slong_t; 3]
Trait Implementations§
impl Copy for stat
Auto Trait Implementations§
impl Freeze for stat
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