(fd: Fd, owner: Option<Uid>, group: Option<Gid>)
| 136 | #[cfg(not(target_os = "wasi"))] |
| 137 | #[inline] |
| 138 | pub fn fchown<Fd: AsFd>(fd: Fd, owner: Option<Uid>, group: Option<Gid>) -> io::Result<()> { |
| 139 | backend::fs::syscalls::fchown(fd.as_fd(), owner, group) |
| 140 | } |
| 141 | |
| 142 | /// `fstat(fd)`—Queries metadata for an open file or directory. |
| 143 | /// |