pub struct PathStat {
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 PathStat
impl Eq for PathStat
impl StructuralPartialEq for PathStat
Auto Trait Implementations§
impl Freeze for PathStat
impl RefUnwindSafe for PathStat
impl Send for PathStat
impl Sync for PathStat
impl Unpin for PathStat
impl UnsafeUnpin for PathStat
impl UnwindSafe for PathStat
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