motor: Add new set_times stubs

This commit is contained in:
Thalia Archibald 2025-10-20 21:45:14 -06:00
parent c7a635f33c
commit b39fb327cb

View file

@ -324,6 +324,14 @@ pub fn set_perm(path: &Path, perm: FilePermissions) -> io::Result<()> {
moto_rt::fs::set_perm(path, perm.rt_perm).map_err(map_motor_error)
}
pub fn set_times(_p: &Path, _times: FileTimes) -> io::Result<()> {
unsupported()
}
pub fn set_times_nofollow(_p: &Path, _times: FileTimes) -> io::Result<()> {
unsupported()
}
pub fn readlink(_p: &Path) -> io::Result<PathBuf> {
unsupported()
}