pub struct FileTimes(_);
🔬This is a nightly-only experimental API. (
file_set_times
#98245)Expand description
Representation of the various timestamps on a file.
Implementations§
source§impl FileTimes
impl FileTimes
sourcepub fn new() -> Self
🔬This is a nightly-only experimental API. (file_set_times
#98245)
pub fn new() -> Self
file_set_times
#98245)Create a new FileTimes
with no times set.
Using the resulting FileTimes
in File::set_times
will not modify any timestamps.
sourcepub fn set_accessed(self, t: SystemTime) -> Self
🔬This is a nightly-only experimental API. (file_set_times
#98245)
pub fn set_accessed(self, t: SystemTime) -> Self
file_set_times
#98245)Set the last access time of a file.
sourcepub fn set_modified(self, t: SystemTime) -> Self
🔬This is a nightly-only experimental API. (file_set_times
#98245)
pub fn set_modified(self, t: SystemTime) -> Self
file_set_times
#98245)Set the last modified time of a file.