pub struct WindowsFileTimes {
pub creation: i64,
pub last_access: i64,
pub last_write: i64,
pub change: i64,
}Expand description
Windows file times expressed as signed 100-nanosecond intervals since the Windows epoch.
Fields§
§creation: i64Creation time.
last_access: i64Last access time.
last_write: i64Last write time.
change: i64Metadata change time.
Trait Implementations§
Source§impl Clone for WindowsFileTimes
impl Clone for WindowsFileTimes
Source§fn clone(&self) -> WindowsFileTimes
fn clone(&self) -> WindowsFileTimes
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WindowsFileTimes
impl Debug for WindowsFileTimes
Source§impl Default for WindowsFileTimes
impl Default for WindowsFileTimes
Source§fn default() -> WindowsFileTimes
fn default() -> WindowsFileTimes
Returns the “default value” for a type. Read more
Source§impl PartialEq for WindowsFileTimes
impl PartialEq for WindowsFileTimes
impl Copy for WindowsFileTimes
impl Eq for WindowsFileTimes
impl StructuralPartialEq for WindowsFileTimes
Auto Trait Implementations§
impl Freeze for WindowsFileTimes
impl RefUnwindSafe for WindowsFileTimes
impl Send for WindowsFileTimes
impl Sync for WindowsFileTimes
impl Unpin for WindowsFileTimes
impl UnwindSafe for WindowsFileTimes
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