1.4.0[−][src]Trait async_std::os::unix::io::IntoRawFd
A trait to express the ability to consume an object and acquire ownership of its raw file descriptor.
Required methods
fn into_raw_fd(self) -> i32
Consumes this object, returning the raw underlying file descriptor.
This function transfers ownership of the underlying file descriptor to the caller. Callers are then the unique owners of the file descriptor and must close the descriptor once it's no longer needed.
Implementations on Foreign Types
impl IntoRawFd for ChildStdout[src]
fn into_raw_fd(self) -> i32[src]
impl IntoRawFd for TcpStream[src]
fn into_raw_fd(self) -> i32[src]
impl IntoRawFd for ChildStderr[src]
fn into_raw_fd(self) -> i32[src]
impl IntoRawFd for UnixStream[src]
fn into_raw_fd(self) -> i32[src]
impl IntoRawFd for UdpSocket[src]
fn into_raw_fd(self) -> i32[src]
impl IntoRawFd for ChildStdin[src]
fn into_raw_fd(self) -> i32[src]
impl IntoRawFd for UnixListener[src]
fn into_raw_fd(self) -> i32[src]
impl IntoRawFd for File[src]
fn into_raw_fd(self) -> i32[src]
impl IntoRawFd for TcpListener[src]
fn into_raw_fd(self) -> i32[src]
impl IntoRawFd for UnixDatagram[src]
fn into_raw_fd(self) -> i32[src]
impl<T> IntoRawFd for Async<T> where
T: IntoRawFd, [src]
T: IntoRawFd,