Module rustix::io

source ·
Expand description

I/O operations.

If you’re looking for SeekFrom, that’s in the fs module.

Structs§

  • errno—An error code.

Functions§

  • close(raw_fd)—Closes a RawFd directly.
  • ioctl(fd, FIONBIO, &value)—Enables or disables non-blocking mode.
  • ioctl(fd, FIONREAD)—Returns the number of bytes ready to be read.
  • Call f until it either succeeds or fails other than Errno::INTR.

Type Aliases§