pub trait FromRawFd { unsafe fn from_raw_fd(fd: RawFd) -> Self; }
A trait to express the ability to construct an object from a raw file descriptor.
unsafe fn from_raw_fd(fd: RawFd) -> Self
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.
impl FromRawFd for File
[src]
unsafe fn from_raw_fd(fd: RawFd) -> File
[src]
impl Read for File impl<'_> Read for &'_ File impl Write for File impl<'_> Write for &'_ File
impl FromRawFd for TcpListener
[src]
unsafe fn from_raw_fd(fd: RawFd) -> TcpListener
[src]
impl FromRawFd for TcpStream
[src]
unsafe fn from_raw_fd(fd: RawFd) -> TcpStream
[src]
impl Read for TcpStream impl<'_> Read for &'_ TcpStream impl Write for TcpStream impl<'_> Write for &'_ TcpStream
impl FromRawFd for UdpSocket
[src]
unsafe fn from_raw_fd(fd: RawFd) -> UdpSocket
[src]
impl FromRawFd for UnixDatagram
[src]
unsafe fn from_raw_fd(fd: RawFd) -> UnixDatagram
[src]
impl FromRawFd for UnixListener
[src]
unsafe fn from_raw_fd(fd: RawFd) -> UnixListener
[src]
impl FromRawFd for UnixStream
[src]
unsafe fn from_raw_fd(fd: RawFd) -> UnixStream
[src]
impl Read for UnixStream impl<'a> Read for &'a UnixStream impl Write for UnixStream impl<'a> Write for &'a UnixStream
impl FromRawFd for Stdio
[src]
unsafe fn from_raw_fd(fd: RawFd) -> Stdio
[src]
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/os/unix/io/trait.FromRawFd.html