Function rustix::fs::is_file_read_write
source · Expand description
fcntl(fd, F_GETFL) & O_ACCMODE
Returns a pair of booleans indicating whether the file descriptor is
readable and/or writable, respectively. This is only reliable on files; for
example, it doesn’t reflect whether sockets have been shut down; for
general I/O handle support, use [io::is_read_write
].