#[repr(C)]pub struct stat {
pub st_dev: _dev_t,
pub st_ino: _ino_t,
pub st_mode: c_ushort,
pub st_nlink: c_short,
pub st_uid: c_short,
pub st_gid: c_short,
pub st_rdev: _dev_t,
pub st_size: _off_t,
pub st_atime: time_t,
pub st_mtime: time_t,
pub st_ctime: time_t,
}
Fields§
§st_dev: _dev_t
§st_ino: _ino_t
§st_mode: c_ushort
§st_nlink: c_short
§st_uid: c_short
§st_gid: c_short
§st_rdev: _dev_t
§st_size: _off_t
§st_atime: time_t
§st_mtime: time_t
§st_ctime: time_t
Trait Implementations§
Source§impl Ord for stat
impl Ord for stat
Source§impl PartialOrd for stat
impl PartialOrd for stat
impl Copy for stat
impl Eq for stat
impl StructuralPartialEq 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