pub trait FsSetFileTimes: BaseFsSetFileTimes {
// Provided method
fn fs_set_file_times(
&self,
path: impl AsRef<Path>,
atime: SystemTime,
mtime: SystemTime,
) -> Result<()> { ... }
}
Provided Methods§
fn fs_set_file_times( &self, path: impl AsRef<Path>, atime: SystemTime, mtime: SystemTime, ) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.