Type Definition RawFd
std::os::unix::io
type RawFd = c_int;
Raw file descriptors.
impl AsRawFd for RawFd
fn as_raw_fd(&self) -> RawFd
Extracts the raw file descriptor. Read more
impl FromRawFd for RawFd
unsafe fn from_raw_fd(fd: RawFd) -> RawFd
Constructs a new instance of Self from the given raw file descriptor. Read more
Self
impl IntoRawFd for RawFd
fn into_raw_fd(self) -> RawFd
Consumes this object, returning the raw underlying file descriptor. Read more