pub struct Stat {
pub uid: u32,
pub inode: u64,
pub ctime_sec: i64,
pub ctime_nsec: i64,
pub mtime_sec: i64,
pub mtime_nsec: i64,
}Expand description
Filesystem identity derived from stat(2).
Fields§
§uid: u32Owning UID from st_uid.
inode: u64Inode number from st_ino.
ctime_sec: i64Change time seconds from st_ctime.
ctime_nsec: i64Change time nanoseconds from st_ctime_nsec.
mtime_sec: i64Modification time seconds from st_mtime.
mtime_nsec: i64Modification time nanoseconds from st_mtime_nsec.
Trait Implementations§
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 UnsafeUnpin 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