1.1.0[−][src]Trait std::os::unix::io::FromRawFd
This is supported on Unix only.
A trait to express the ability to construct an object from a raw file descriptor.
Required Methods
unsafe fn from_raw_fd(fd: RawFd) -> Self
This is supported on Unix only.
Constructs a new instance of Self
from the given raw file
descriptor.
This function consumes ownership of the specified file descriptor. The returned object will take responsibility for closing it when the object goes out of scope.
This function is also unsafe as the primitives currently returned have the contract that they are the sole owner of the file descriptor they are wrapping. Usage of this function could accidentally allow violating this contract which can cause memory unsafety in code that relies on it being true.
Implementors
impl FromRawFd for File
[src]
impl FromRawFd for File
ⓘImportant traits for Fileunsafe fn from_raw_fd(fd: RawFd) -> File
[src]
ⓘImportant traits for File
unsafe fn from_raw_fd(fd: RawFd) -> File
This is supported on Unix only.
impl FromRawFd for TcpListener
[src]
impl FromRawFd for TcpListener
unsafe fn from_raw_fd(fd: RawFd) -> TcpListener
[src]
unsafe fn from_raw_fd(fd: RawFd) -> TcpListener
This is supported on Unix only.
impl FromRawFd for TcpStream
[src]
impl FromRawFd for TcpStream
ⓘImportant traits for TcpStreamunsafe fn from_raw_fd(fd: RawFd) -> TcpStream
[src]
ⓘImportant traits for TcpStream
unsafe fn from_raw_fd(fd: RawFd) -> TcpStream
This is supported on Unix only.
impl FromRawFd for UdpSocket
[src]
impl FromRawFd for UdpSocket
unsafe fn from_raw_fd(fd: RawFd) -> UdpSocket
[src]
unsafe fn from_raw_fd(fd: RawFd) -> UdpSocket
This is supported on Unix only.
impl FromRawFd for UnixDatagram
[src]
impl FromRawFd for UnixDatagram
unsafe fn from_raw_fd(fd: RawFd) -> UnixDatagram
[src]
unsafe fn from_raw_fd(fd: RawFd) -> UnixDatagram
This is supported on Unix only.
impl FromRawFd for UnixListener
[src]
impl FromRawFd for UnixListener
unsafe fn from_raw_fd(fd: RawFd) -> UnixListener
[src]
unsafe fn from_raw_fd(fd: RawFd) -> UnixListener
This is supported on Unix only.
impl FromRawFd for UnixStream
[src]
impl FromRawFd for UnixStream
ⓘImportant traits for UnixStreamunsafe fn from_raw_fd(fd: RawFd) -> UnixStream
[src]
ⓘImportant traits for UnixStream
unsafe fn from_raw_fd(fd: RawFd) -> UnixStream
This is supported on Unix only.
impl FromRawFd for Stdio
[src]
impl FromRawFd for Stdio
unsafe fn from_raw_fd(fd: RawFd) -> Stdio
[src]
unsafe fn from_raw_fd(fd: RawFd) -> Stdio
This is supported on Unix only.