pub struct FileTimestamps {
pub access_lo: u32,
pub access_hi: u32,
pub modification_lo: u32,
pub modification_hi: u32,
pub creation_lo: u32,
pub creation_hi: u32,
pub now_lo: u32,
pub now_hi: u32,
}Expand description
Timestamps to apply to a newly created inode.
Each pair is (seconds_lo, extra) in ext4 format – the same layout
returned by timestamp_now().
Fields§
§access_lo: u32§access_hi: u32§modification_lo: u32§modification_hi: u32§creation_lo: u32§creation_hi: u32§now_lo: u32§now_hi: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileTimestamps
impl RefUnwindSafe for FileTimestamps
impl Send for FileTimestamps
impl Sync for FileTimestamps
impl Unpin for FileTimestamps
impl UnsafeUnpin for FileTimestamps
impl UnwindSafe for FileTimestamps
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