(fd: Fd)
| 154 | /// [`FileType::from_raw_mode`]: crate::fs::FileType::from_raw_mode |
| 155 | #[inline] |
| 156 | pub fn fstat<Fd: AsFd>(fd: Fd) -> io::Result<Stat> { |
| 157 | backend::fs::syscalls::fstat(fd.as_fd()) |
| 158 | } |
| 159 | |
| 160 | /// `fstatfs(fd)`—Queries filesystem statistics for an open file or directory. |
| 161 | /// |